diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ba866ce..0988f4e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -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}' diff --git a/src/bio2bel_wikipathways/constants.py b/src/bio2bel_wikipathways/constants.py index 603883f..2f26bd3 100644 --- a/src/bio2bel_wikipathways/constants.py +++ b/src/bio2bel_wikipathways/constants.py @@ -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)