From da7e7503b9088990a67ae516d03198cfc210a77d Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 3 Jul 2018 14:32:38 -0400 Subject: [PATCH] Bump version 0.20.3rc2 --> 0.20.3 Signed-off-by: Jack Robison --- CHANGELOG.md | 31 ++++++++++++++++++++++--------- lbrynet/__init__.py | 2 +- 2 files changed, 23 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4ab83659..5ac37e0bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,28 +13,41 @@ at anytime. * ### Fixed - * `blob_list` raising an error when blobs in a stream haven't yet been created (8a0d0b44ddf9cbeb2a9074eed39d6064ce21df64) - * stopping a download potentially raising an attribute error (https://github.com/lbryio/lbry/pull/1269) - * file manager startup locking up when there are many files for some channels (https://github.com/lbryio/lbry/pull/1281) - * improper sorting when getting the closest peers to a hash (https://github.com/lbryio/lbry/pull/1282) + * + * ### Deprecated * * ### Changed - * raised the default `peer_search_timeout` setting from 3 to 30 and added logging for when it happens (https://github.com/lbryio/lbry/pull/1283) - * change iterative find stop condition on find value to allow it to continue until a value is found or it times out (https://github.com/lbryio/lbry/pull/1283) - * include all of our own blobs in the local dht datastore (as if we had announced them to ourselves) (https://github.com/lbryio/lbry/pull/1280) - * ignore dht `store` token validation errors for the first expiration-time after startup (fixes failed `store` requests after a restart) (https://github.com/lbryio/lbry/pull/1280) + * + * ### Added * * ### Removed - * `jsonrpclib` as a requirement for the project (https://github.com/lbryio/lbry/pull/1274) * + * + + +## [0.20.3] - 2018-07-03 +### Fixed + * `blob_list` raising an error when blobs in a stream haven't yet been created (8a0d0b44ddf9cbeb2a9074eed39d6064ce21df64) + * stopping a download potentially raising an attribute error (https://github.com/lbryio/lbry/pull/1269) + * file manager startup locking up when there are many files for some channels (https://github.com/lbryio/lbry/pull/1281) + * improper sorting when getting the closest peers to a hash (https://github.com/lbryio/lbry/pull/1282) + +### Changed + * raised the default `peer_search_timeout` setting from 3 to 30 and added logging for when it happens (https://github.com/lbryio/lbry/pull/1283) + * change iterative find stop condition on find value to allow it to continue until a value is found or it times out (https://github.com/lbryio/lbry/pull/1283) + * include all of our own blobs in the local dht datastore (as if we had announced them to ourselves) (https://github.com/lbryio/lbry/pull/1280) + * ignore dht `store` token validation errors for the first expiration-time after startup (fixes failed `store` requests after a restart) (https://github.com/lbryio/lbry/pull/1280) + +### Removed + * `jsonrpclib` as a requirement for the project (https://github.com/lbryio/lbry/pull/1274) ## [0.20.2] - 2018-06-23 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 6e414af06..1e491a26d 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.20.3rc2" +__version__ = "0.20.3" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())