From 983e381cad43a1fe6cad7cf274ae7072e1a3d7e9 Mon Sep 17 00:00:00 2001 From: Charles Tapley Hoyt Date: Mon, 15 Apr 2019 13:28:29 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.3-dev=20=E2=86=92=200.2.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/source/conf.py | 2 +- src/bio2bel_hgnc/__init__.py | 2 +- src/bio2bel_hgnc/constants.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a332910..4b6ac03 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.3-dev +current_version = 0.2.3 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))? diff --git a/docs/source/conf.py b/docs/source/conf.py index 71bfe7f..f252cd2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -54,7 +54,7 @@ copyright = '2017-2018, Charles Tapley Hoyt' author = 'Charles Tapley Hoyt' -release = '0.2.3-dev' +release = '0.2.3' parsed_version = re.match( '(?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?', diff --git a/src/bio2bel_hgnc/__init__.py b/src/bio2bel_hgnc/__init__.py index 2ef76ef..de7a755 100644 --- a/src/bio2bel_hgnc/__init__.py +++ b/src/bio2bel_hgnc/__init__.py @@ -6,7 +6,7 @@ from .manager import Manager # noqa: F401 from .utils import get_version # noqa: F401 -__version__ = '0.2.3-dev' +__version__ = '0.2.3' __title__ = 'bio2bel_hgnc' __description__ = "A package for converting HGNC to BEL" diff --git a/src/bio2bel_hgnc/constants.py b/src/bio2bel_hgnc/constants.py index 6bc335d..596807f 100644 --- a/src/bio2bel_hgnc/constants.py +++ b/src/bio2bel_hgnc/constants.py @@ -4,7 +4,7 @@ from bio2bel import get_data_dir -VERSION = '0.2.3-dev' +VERSION = '0.2.3' MODULE_NAME = 'hgnc' #: The default directory where PyBEL files, including logs and the default cache, are stored. Created if not exists.