diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1a6f47b86..099a5da35 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.1rc2 +current_version = 0.10.1 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 78c35915d..b87557feb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,6 @@ can and probably will change functionality and break backwards compatability at anytime. ## [Unreleased] - ### Added * * @@ -18,9 +17,8 @@ at anytime. * ### Fixed - * Fix multiple reactor.stop() calls - * Properly shut down lbryum wallet from lbrynet - * Set LBRYumWallet.config upon initialization, fixes attribute error + * + * ### Deprecated * @@ -30,6 +28,14 @@ at anytime. * * +## [0.10.1] - 2017-05-03 + +### Fixed + * Fix multiple reactor.stop() calls + * Properly shut down lbryum wallet from lbrynet + * Set LBRYumWallet.config upon initialization, fixes attribute error + + ## [0.10.0] - 2017-04-25 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 1e310cd5e..a658ff28d 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.10.1rc2" +__version__ = "0.10.1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())