Skip to content

Commit a62925e

Browse files
author
Charles Tapley Hoyt
committed
Bump version: 0.1.2-dev → 0.1.2
1 parent 3b21621 commit a62925e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.2-dev
2+
current_version = 0.1.2
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-]+)*))?

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
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.1.2-dev'
57+
release = '0.1.2'
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-]+)*))?',

src/bio2bel_hgnc/__init__.py

Lines changed: 1 addition & 1 deletion
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.1.2-dev'
9+
__version__ = '0.1.2'
1010

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

src/bio2bel_hgnc/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from bio2bel import get_data_dir
66

7-
VERSION = '0.1.2-dev'
7+
VERSION = '0.1.2'
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)