From 51429c4abdb270b0b7c1a832da25ca4ed5a86b4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20S=C3=A1nchez-Gallego?= Date: Wed, 10 Oct 2018 19:18:33 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.0dev=20=E2=86=92=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 7 ++++--- python/jaeger/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6c92b972..bff57315 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,19 +1,20 @@ [bumpversion] -current_version = 0.1.0dev +current_version = 0.1.0 commit = True tag = False tag_name = {new_version} parse = (?P\d+)\.(?P\d+)\.(?P\d+)(?P[a-z]+)? -serialize = +serialize = {major}.{minor}.{patch}{release} {major}.{minor}.{patch} [bumpversion:part:release] optional_value = alpha -values = +values = dev alpha [bumpversion:file:python/jaeger/__init__.py] [bumpversion:file:setup.py] + diff --git a/python/jaeger/__init__.py b/python/jaeger/__init__.py index add5aec9..aecd1e18 100644 --- a/python/jaeger/__init__.py +++ b/python/jaeger/__init__.py @@ -41,7 +41,7 @@ def merge(user, default): config = merge(yaml.load(open(custom_config_fn)), config) -__version__ = '0.1.0dev' +__version__ = '0.1.0' try: diff --git a/setup.py b/setup.py index 3babe8cf..937eb972 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ # The NAME variable should be of the format "sdss-jaeger". # Please check your NAME adheres to that format. NAME = 'jaeger' -VERSION = '0.1.0dev' +VERSION = '0.1.0' RELEASE = 'dev' in VERSION