From cc84c2c9e2d10c3b7a39071566d9650f59c35d9b Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Fri, 20 Jan 2017 14:17:59 +1100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.3-dev=20=E2=86=92=200.3.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- skan/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 82d9ee04..4a671df1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.3.3-dev +current_version = 0.3.3 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))?(\-(?P\w+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/setup.py b/setup.py index 9660d6ea..500a2c3d 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ URL = 'https://github.com/jni/skan' LICENSE = 'BSD 3-clause' DOWNLOAD_URL = 'https://github.com/jni/skan' -VERSION = '0.3.3-dev' +VERSION = '0.3.3' PYTHON_VERSION = (3, 5) INST_DEPENDENCIES = {} diff --git a/skan/__init__.py b/skan/__init__.py index 55d18217..70736e03 100644 --- a/skan/__init__.py +++ b/skan/__init__.py @@ -1,6 +1,6 @@ from .csr import skeleton_to_csgraph, branch_statistics, summarise -__version__ = '0.3.3-dev' +__version__ = '0.3.3' __all__ = ['skeleton_to_csgraph', 'branch_statistics',