Skip to content
This repository was archived by the owner on Apr 24, 2020. It is now read-only.

Commit 6cc64e8

Browse files
committed
Bump version: 0.2.0-dev → 0.2.0
1 parent ec86ad3 commit 6cc64e8

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.2.0-dev
2+
current_version = 0.2.0
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
@@ -13,7 +13,7 @@
1313
copyright = '2018, Charles Tapley Hoyt'
1414
author = 'Charles Tapley Hoyt'
1515

16-
release = '0.2.0-dev'
16+
release = '0.2.0'
1717

1818
# The short X.Y version.
1919
parsed_version = re.match(

src/pybel_jupyter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
'to_jupyter_str',
1515
]
1616

17-
__version__ = '0.2.0-dev'
17+
__version__ = '0.2.0'
1818

1919
__title__ = 'pybel_jupyter'
2020
__description__ = 'A PyBEL extension for Jupyter notebooks'

src/pybel_jupyter/constants.py

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

55
from pybel.constants import ABUNDANCE, BIOPROCESS, COMPLEX, COMPOSITE, GENE, MIRNA, PATHOLOGY, PROTEIN, REACTION, RNA
66

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

99
#: The color map defining the node colors in visualization
1010
DEFAULT_COLOR_MAP = {

0 commit comments

Comments
 (0)