From 2ddd6b051d4457f0d747428e3d97aa37839f3c93 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 18 Jul 2018 15:36:21 -0400 Subject: [PATCH] Bump version 0.20.4rc4 --> 0.20.4 Signed-off-by: Jack Robison --- CHANGELOG.md | 20 +++++++++++++++----- lbrynet/__init__.py | 2 +- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 278001f49..83c83108b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,17 +13,16 @@ at anytime. * ### Fixed - * spelling errors in messages printed by `lbrynet-cli` - * high CPU usage when a stream is incomplete and the peers we're requesting from have no more blobs to send us (https://github.com/lbryio/lbry/pull/1301) + * + * ### Deprecated * * ### Changed - * keep track of failures for DHT peers for up to ten minutes instead of indefinitely (https://github.com/lbryio/lbry/pull/1300) - * skip ignored peers from iterative lookups instead of blocking the peer who returned them to us too (https://github.com/lbryio/lbry/pull/1300) - * if a node becomes ignored during an iterative find cycle remove it from the shortlist so that we can't return it as a result nor try to probe it anyway (https://github.com/lbryio/lbry/pull/1303) + * + * ### Added * @@ -34,6 +33,17 @@ at anytime. * +## [0.20.4] - 2018-07-18 +### Fixed + * spelling errors in messages printed by `lbrynet-cli` + * high CPU usage when a stream is incomplete and the peers we're requesting from have no more blobs to send us (https://github.com/lbryio/lbry/pull/1301) + +### Changed + * keep track of failures for DHT peers for up to ten minutes instead of indefinitely (https://github.com/lbryio/lbry/pull/1300) + * skip ignored peers from iterative lookups instead of blocking the peer who returned them to us too (https://github.com/lbryio/lbry/pull/1300) + * if a node becomes ignored during an iterative find cycle remove it from the shortlist so that we can't return it as a result nor try to probe it anyway (https://github.com/lbryio/lbry/pull/1303) + + ## [0.20.3] - 2018-07-03 ### Fixed * `blob_list` raising an error when blobs in a stream haven't yet been created (8a0d0b44ddf9cbeb2a9074eed39d6064ce21df64) diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index a1b296cdb..0a9c7f041 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.20.4rc4" +__version__ = "0.20.4" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())