Skip to content

Commit fa65412

Browse files
author
Charles Tapley Hoyt
committedSep 26, 2019
Bump version: 0.2.4-dev → 0.2.4
1 parent 3a61ba4 commit fa65412

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

Diff for: ‎.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.4-dev
2+
current_version = 0.2.4
33
commit = True
44
tag = False
55
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-]+)*))?

Diff for: ‎docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
copyright = '2017-2018, Charles Tapley Hoyt'
5555
author = 'Charles Tapley Hoyt'
5656

57-
release = '0.2.4-dev'
57+
release = '0.2.4'
5858

5959
parsed_version = re.match(
6060
'(?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-]+)*))?',

Diff for: ‎src/bio2bel_hgnc/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .manager import Manager # noqa: F401
77
from .utils import get_version # noqa: F401
88

9-
__version__ = '0.2.4-dev'
9+
__version__ = '0.2.4'
1010

1111
__title__ = 'bio2bel_hgnc'
1212
__description__ = "A package for converting HGNC to BEL"

Diff for: ‎src/bio2bel_hgnc/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from bio2bel import get_data_dir
66

7-
VERSION = '0.2.4-dev'
7+
VERSION = '0.2.4'
88

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

0 commit comments

Comments
 (0)
Please sign in to comment.