diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 40c5d4664..5b3c0f30a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0rc11 +current_version = 0.9.0rc12 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cd168801..36afb0d5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,10 +19,14 @@ at anytime. * ### Fixed - * Fixed ExchangeRateManager freezing the app - * Fixed download not timing out properly when downloading sd blob * * + * + +## [0.9.0rc12] - 2017-03-06 +### Fixed + * Fixed ExchangeRateManager freezing the app + * Fixed download not timing out properly when downloading sd blob ## [0.9.0rc11] - 2017-02-27 ### Fixed diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 85f4b87d8..6ace9ac04 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.9.0rc11" +__version__ = "0.9.0rc12" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())