From 8523a1726ac269452677669b9b31c476cfeee5f8 Mon Sep 17 00:00:00 2001 From: Juan Nunez-Iglesias Date: Tue, 8 Nov 2016 13:52:53 +1100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1-dev=20=E2=86=92=200.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 17 +++++++++-------- setup.py | 2 +- skan/__init__.py | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b2fe6ab7..7f53d931 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,12 +1,12 @@ [bumpversion] commit = True tag = True -current_version = 0.1-dev +current_version = 0.1 parse = (?P\d+)\.(?P\d+)(\.(?P\d+))?(\-(?P\w+))? -serialize = - {major}.{minor}.{patch}-{release} - {major}.{minor}.{patch} - {major}.{minor} +serialize = + {major}.{minor}.{patch}-{release} + {major}.{minor}.{patch} + {major}.{minor} [bumpversion:file:setup.py] @@ -14,6 +14,7 @@ serialize = [bumpversion:part:release] optional_value = final -values = - dev - final +values = + dev + final + diff --git a/setup.py b/setup.py index 29d867f9..56200611 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ URL = 'https://github.com/jni/skan' LICENSE = 'BSD 3-clause' DOWNLOAD_URL = 'https://github.com/jni/skan' -VERSION = '0.1-dev' +VERSION = '0.1' PYTHON_VERSION = (3, 5) INST_DEPENDENCIES = {} diff --git a/skan/__init__.py b/skan/__init__.py index 4a8c8d06..5bc103ca 100644 --- a/skan/__init__.py +++ b/skan/__init__.py @@ -1,6 +1,6 @@ from .csr import skeleton_to_csgraph, branch_statistics, summarise -__version__ = '0.1-dev' +__version__ = '0.1' __all__ = ['skeleton_to_csgraph', 'branch_statistics',