Skip to content

Commit

Permalink
Bump version: 0.0.7.dev1 → 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dannygoldstein committed Dec 7, 2021
1 parent 8a49cda commit c5dc7e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.7.dev1
current_version = 0.0.7
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:\.dev(?P<dev>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="sweeps",
version="0.0.7.dev1",
version="0.0.7",
description="Weights and Biases Hyperparameter Sweeps Engine.",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/sweeps/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .run import next_run, next_runs, stop_runs, SweepRun, RunState # noqa
from .config import SweepConfig, schema_violations_from_proposed_config # noqa

__version__ = "0.0.7.dev1"
__version__ = "0.0.7"

0 comments on commit c5dc7e2

Please sign in to comment.