Skip to content

Commit 9d27140

Browse files
committed
Revert "Bump version: 0.10.6 → 0.10.6.dev1"
This reverts commit 97b73a3.
1 parent c677a81 commit 9d27140

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

setup.cfg

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
[bumpversion]
2-
current_version = 0.10.6.dev1
2+
current_version = 0.10.6
33
commit = True
44
tag = False
5+
6+
# NOTE: we can only have one of rc, or dev specified, since dev is more common use that
7+
# parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:rc(?P<rc>\d+))?
58
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:\.dev(?P<dev>\d+))?
69
serialize =
10+
# {major}.{minor}.{patch}rc{rc}
711
{major}.{minor}.{patch}.dev{dev}
812
{major}.{minor}.{patch}
913

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name='wandb',
26-
version='0.10.6.dev1',
26+
version='0.10.6',
2727
description="A CLI and library for interacting with the Weights and Biases API.",
2828
long_description=readme,
2929
long_description_content_type="text/markdown",

wandb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from __future__ import print_function
2020
from __future__ import unicode_literals
2121

22-
__version__ = '0.10.6.dev1'
22+
__version__ = '0.10.6'
2323

2424
# Used with pypi checks and other messages related to pip
2525
_wandb_module = 'wandb'

0 commit comments

Comments
 (0)