diff --git a/setup.cfg b/setup.cfg index 1a92ae7d0dd..fb1294913d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.13.dev1 +current_version = 0.10.13 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:\.dev(?P\d+))? diff --git a/setup.py b/setup.py index 79c740705da..2089acda84f 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name='wandb', - version='0.10.13.dev1', + version='0.10.13', description="A CLI and library for interacting with the Weights and Biases API.", long_description=readme, long_description_content_type="text/markdown", diff --git a/wandb/__init__.py b/wandb/__init__.py index 63b74459d63..7298dec2128 100644 --- a/wandb/__init__.py +++ b/wandb/__init__.py @@ -19,7 +19,7 @@ from __future__ import print_function from __future__ import unicode_literals -__version__ = "0.10.13.dev1" +__version__ = "0.10.13" # Used with pypi checks and other messages related to pip _wandb_module = "wandb"