From 79d1da5ff87b74ac7ece1c6a7419360dd95942af Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Thu, 23 Aug 2018 23:43:35 -0400 Subject: [PATCH] Bump version 0.21.2rc3 --> 0.21.2 Signed-off-by: Jack Robison --- CHANGELOG.md | 10 ++++++++-- lbrynet/__init__.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c9fe3b66..3e6597e7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,8 @@ at anytime. * ### Fixed - * issue in dht ping queue where enqueued pings that aren't yet due wouldn't be rescheduled - * blob mirror downloader not finishing streams that were partially uploaded at the time of the download attempt (https://github.com/lbryio/lbry/issues/1376) + * + * ### Deprecated * @@ -33,6 +33,12 @@ at anytime. * +## [0.21.2] - 2018-08-23 +### Fixed + * issue in dht ping queue where enqueued pings that aren't yet due wouldn't be rescheduled + * blob mirror downloader not finishing streams that were partially uploaded at the time of the download attempt (https://github.com/lbryio/lbry/issues/1376) + + ## [0.21.1] - 2018-08-13 ### Fixed * `download_progress` field in `blockchain_headers` section of `status` not initializing correctly when resuming a download (https://github.com/lbryio/lbry/issues/1355) diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 4ebdbce31..027498237 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.21.2rc3" +__version__ = "0.21.2" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())