From d64916a06115920aaa9eaab67704a0b2d34aae20 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 27 Nov 2018 16:28:55 -0500 Subject: [PATCH] bump --- CHANGELOG.md | 14 +++++++++----- lbrynet/__init__.py | 2 +- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 107bad731..714de7431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,19 +16,23 @@ at anytime. ### API * add `aioupnp_version` to `upnp` field in the response to `status` - * fix uncaught claim signature errors + * fixed uncaught claim signature errors + +### Schema + * updated `protobuf` to `3.2.0` (https://github.com/lbryio/lbry/issues/1602) + ### Wallet - * - * + * fixed resolving names with invalid channel signatures + * fixed wallet sync issues ### File Manager * * ### DHT - * - * + * fixed retrying kademlia rpc calls (https://github.com/lbryio/lbry/pull/1495) + * fixed `KeyError` in `iterativeFindValue`, this is used by `peer_list` and when finding peers to download blobs from (https://github.com/lbryio/lbry/issues/1638) ### P2P * diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index ccabee936..d561defea 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -3,7 +3,7 @@ from lbrynet.custom_logger import install_logger __name__ = "lbrynet" -__version__ = "0.30.1rc5" +__version__ = "0.30.1rc6" version = tuple(__version__.split('.')) install_logger()