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())