Skip to content

Commit

Permalink
Bump version: 0.2.4 → 0.2.5-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Tapley Hoyt committed Sep 26, 2019
1 parent fa65412 commit 626d7fe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.4
current_version = 0.2.5-dev
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P<build>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -54,7 +54,7 @@
copyright = '2017-2018, Charles Tapley Hoyt'
author = 'Charles Tapley Hoyt'

release = '0.2.4'
release = '0.2.5-dev'

parsed_version = re.match(
'(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P<build>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?',
Expand Down
2 changes: 1 addition & 1 deletion src/bio2bel_hgnc/__init__.py
Expand Up @@ -6,7 +6,7 @@
from .manager import Manager # noqa: F401
from .utils import get_version # noqa: F401

__version__ = '0.2.4'
__version__ = '0.2.5-dev'

__title__ = 'bio2bel_hgnc'
__description__ = "A package for converting HGNC to BEL"
Expand Down
2 changes: 1 addition & 1 deletion src/bio2bel_hgnc/constants.py
Expand Up @@ -4,7 +4,7 @@

from bio2bel import get_data_dir

VERSION = '0.2.4'
VERSION = '0.2.5-dev'

MODULE_NAME = 'hgnc'
#: The default directory where PyBEL files, including logs and the default cache, are stored. Created if not exists.
Expand Down

0 comments on commit 626d7fe

Please sign in to comment.