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