Skip to content

Commit

Permalink
Bump version: 0.2.0-dev → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles Hoyt committed Nov 13, 2018
1 parent 26fc05b commit 9054042
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.0-dev
current_version = 0.2.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.2.0-dev'
release = '0.2.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 @@ -42,7 +42,7 @@
from .models import *
from .utils import get_version

__version__ = '0.2.0-dev'
__version__ = '0.2.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.2.0-dev'
VERSION = '0.2.0'

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

0 comments on commit 9054042

Please sign in to comment.