This commit is contained in:
Jack Robison 2018-11-27 16:28:55 -05:00
parent 20a0568253
commit d64916a061
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 10 additions and 6 deletions

View file

@ -16,19 +16,23 @@ at anytime.
### API ### API
* add `aioupnp_version` to `upnp` field in the response to `status` * 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 ### Wallet
* * fixed resolving names with invalid channel signatures
* * fixed wallet sync issues
### File Manager ### File Manager
* *
* *
### DHT ### 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 ### P2P
* *

View file

@ -3,7 +3,7 @@ from lbrynet.custom_logger import install_logger
__name__ = "lbrynet" __name__ = "lbrynet"
__version__ = "0.30.1rc5" __version__ = "0.30.1rc6"
version = tuple(__version__.split('.')) version = tuple(__version__.split('.'))
install_logger() install_logger()