From f63438938116c88925f11a15849f45bed754a72f Mon Sep 17 00:00:00 2001 From: Ilja Heitlager Date: Fri, 18 Aug 2017 17:59:09 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0.dev0=20=E2=86=92=200.6.?= =?UTF-8?q?0=20(#61)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 2 +- setup.py | 2 +- src/data_migrator/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 51959925..b323b429 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0.dev0 +current_version = 0.6.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? files = src/data_migrator/__init__.py docs/conf.py setup.py serialize = diff --git a/docs/conf.py b/docs/conf.py index 317b6f74..5db648e7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,7 +63,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = "0.6.0.dev0" +release = "0.6.0" # The short X.Y version. version = ".".join(release.split(".")[0:2]) diff --git a/setup.py b/setup.py index a889ef85..0d70d1a6 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='data-migrator', - version="0.6.0.dev0", + version="0.6.0", description='declarative data migration and transformation package', long_description=long_description, license='MIT', diff --git a/src/data_migrator/__init__.py b/src/data_migrator/__init__.py index a36e2385..31fc2bae 100644 --- a/src/data_migrator/__init__.py +++ b/src/data_migrator/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/env python # -*- coding: UTF-8 -*- -__version__ = "0.6.0.dev0" +__version__ = "0.6.0" PACKAGE_NAME = 'data_migrator'