Skip to content

Commit

Permalink
Fix version constant in bumpversion config
Browse files Browse the repository at this point in the history
  • Loading branch information
cthoyt committed Jul 31, 2018
1 parent f4fbf2a commit d83b55e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ values = [0-9A-Za-z-]+
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bumpversion:file:src/bio2bel_wikipathways/constants.py]
search = VERSION = '{current_version}'
replace = VERSION = '{new_version}'

[bumpversion:file:docs/source/conf.py]
search = release = '{current_version}'
replace = release = '{new_version}'
Expand Down
2 changes: 1 addition & 1 deletion src/bio2bel_wikipathways/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from bio2bel.utils import get_data_dir

VERSION = '0.1.0-dev'
VERSION = '0.1.2-dev'

MODULE_NAME = 'wikipathways'
DATA_DIR = get_data_dir(MODULE_NAME)
Expand Down

0 comments on commit d83b55e

Please sign in to comment.