From 1bfd3eac8cf2de3515b85985564da6eccbe8f398 Mon Sep 17 00:00:00 2001 From: Johannes Dollinger <johannes.dollinger@deliveryhero.com> Date: Mon, 14 Dec 2015 11:34:49 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.14.0-dev=20=E2=86=92=200.14?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 4 ++-- lymph/monkey.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 91c37b5..dc7aa73 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.0-dev +current_version = 0.14.0 parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>\w+))? serialize = {major}.{minor}.{patch}-{release} diff --git a/docs/conf.py b/docs/conf.py index 5850a1a..c8d1659 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = '0.14.0-dev' +version = '0.14.0' # The full version, including alpha/beta/rc tags. -release = '0.14.0-dev' +release = '0.14.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/lymph/monkey.py b/lymph/monkey.py index bd48fd7..ed9acfd 100644 --- a/lymph/monkey.py +++ b/lymph/monkey.py @@ -18,7 +18,7 @@ def patch(): def _export(): import lymph - lymph.__version__ = '0.14.0-dev' + lymph.__version__ = '0.14.0' from lymph.exceptions import RpcError, LookupFailure, Timeout from lymph.core.decorators import rpc, raw_rpc, event, task diff --git a/setup.py b/setup.py index ae0b94f..9a56d9d 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ setup( name='lymph', url='http://github.com/deliveryhero/lymph/', - version='0.14.0-dev', + version='0.14.0', namespace_packages=['lymph'], packages=find_packages(), license=u'Apache License (2.0)',