Skip to content

Commit

Permalink
Bump version: 0.9.0-dev → 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Dollinger committed Oct 5, 2015
1 parent 4c4a555 commit 7807e87
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0-dev
current_version = 0.9.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>\w+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
# built documents.
#
# The short X.Y version.
version = '0.9.0-dev'
version = '0.9.0'
# The full version, including alpha/beta/rc tags.
release = '0.9.0-dev'
release = '0.9.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion lymph/monkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def patch():

def _export():
import lymph
lymph.__version__ = '0.9.0-dev'
lymph.__version__ = '0.9.0'

from lymph.exceptions import RpcError, LookupFailure, Timeout
from lymph.core.decorators import rpc, raw_rpc, event, task
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
setup(
name='lymph',
url='http://github.com/deliveryhero/lymph/',
version='0.9.0-dev',
version='0.9.0',
namespace_packages=['lymph'],
packages=find_packages(),
license=u'Apache License (2.0)',
Expand Down

0 comments on commit 7807e87

Please sign in to comment.