diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d77dfff..2955088 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0-dev +current_version = 0.10.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 f6bdca7..7931e5a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = '0.10.0-dev' +version = '0.10.0' # The full version, including alpha/beta/rc tags. -release = '0.10.0-dev' +release = '0.10.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 779e7b7..149cf5e 100644 --- a/lymph/monkey.py +++ b/lymph/monkey.py @@ -18,7 +18,7 @@ def patch(): def _export(): import lymph - lymph.__version__ = '0.10.0-dev' + lymph.__version__ = '0.10.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 a1c66ca..179f7f5 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setup( name='lymph', url='http://github.com/deliveryhero/lymph/', - version='0.10.0-dev', + version='0.10.0', namespace_packages=['lymph'], packages=find_packages(), license=u'Apache License (2.0)',