Skip to content

Commit

Permalink
Bump version: 0.1.0-dev → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Tapley Hoyt committed Aug 13, 2018
1 parent 57eaaa5 commit 04c7b13
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.1.0-dev
current_version = 0.1.0
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 @@ -20,7 +20,7 @@
copyright = '2017-2018, Charles Tapley Hoyt'
author = 'Charles Tapley Hoyt'

release = '0.1.0-dev'
release = '0.1.0'

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_chebi/__init__.py
Expand Up @@ -46,7 +46,7 @@

__all__ = (manager.__all__ + enrich.__all__ + models.__all__ + ['get_version'])

__version__ = '0.1.0-dev'
__version__ = '0.1.0'

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

from bio2bel.utils import get_data_dir

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

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

0 comments on commit 04c7b13

Please sign in to comment.