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\d+)\.(?P\d+)\.(?P\d+)(?:-(?P\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)',