From 0b426b0351821c5c56ed226b872704451aeaa18f Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Fri, 20 Jan 2017 14:17:48 +1100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.2=20=E2=86=92=200.3.3-dev?= 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 1e8ba55b..82d9ee04 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.3.2 +current_version = 0.3.3-dev parse = (?P\d+)\.(?P\d+)(\.(?P\d+))?(\-(?P\w+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/setup.py b/setup.py index ea9f3169..9660d6ea 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.2' +VERSION = '0.3.3-dev' PYTHON_VERSION = (3, 5) INST_DEPENDENCIES = {} diff --git a/skan/__init__.py b/skan/__init__.py index 45ed99d4..55d18217 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.2' +__version__ = '0.3.3-dev' __all__ = ['skeleton_to_csgraph', 'branch_statistics',