Bump version 0.21.2rc3 --> 0.21.2

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2018-08-23 23:43:35 -04:00
parent d73252b11a
commit 79d1da5ff8
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 9 additions and 3 deletions

View file

@ -13,8 +13,8 @@ at anytime.
* *
### Fixed ### 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 ### 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 ## [0.21.1] - 2018-08-13
### Fixed ### Fixed
* `download_progress` field in `blockchain_headers` section of `status` not initializing correctly when resuming a download (https://github.com/lbryio/lbry/issues/1355) * `download_progress` field in `blockchain_headers` section of `status` not initializing correctly when resuming a download (https://github.com/lbryio/lbry/issues/1355)

View file

@ -1,6 +1,6 @@
import logging import logging
__version__ = "0.21.2rc3" __version__ = "0.21.2"
version = tuple(__version__.split('.')) version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler()) logging.getLogger(__name__).addHandler(logging.NullHandler())