From 6097ebb7b8cd1075e0dfefb0c432e2cdf0c2758f Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Wed, 3 May 2017 11:37:00 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.1rc2=20=E2=86=92=200.10.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 14 ++++++++++---- lbrynet/__init__.py | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) 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())