Skip to content

Commit

Permalink
Bump version: 0.1.0dev → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Oct 11, 2018
1 parent 9d776c7 commit 51429c4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
[bumpversion]
current_version = 0.1.0dev
current_version = 0.1.0
commit = True
tag = False
tag_name = {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<release>[a-z]+)?
serialize =
serialize =
{major}.{minor}.{patch}{release}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = alpha
values =
values =
dev
alpha

[bumpversion:file:python/jaeger/__init__.py]

[bumpversion:file:setup.py]

2 changes: 1 addition & 1 deletion python/jaeger/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def merge(user, default):
config = merge(yaml.load(open(custom_config_fn)), config)


__version__ = '0.1.0dev'
__version__ = '0.1.0'


try:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# The NAME variable should be of the format "sdss-jaeger".
# Please check your NAME adheres to that format.
NAME = 'jaeger'
VERSION = '0.1.0dev'
VERSION = '0.1.0'
RELEASE = 'dev' in VERSION


Expand Down

0 comments on commit 51429c4

Please sign in to comment.