Bump version 0.20.0rc14 --> 0.20.0

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2018-06-13 15:36:49 -04:00
parent 07190c5d69
commit 7030547849
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 83 additions and 64 deletions

View file

@ -12,6 +12,28 @@ at anytime.
*
*
### Fixed
*
*
### Deprecated
*
*
### Changed
*
*
### Added
*
*
### Removed
*
*
## [0.20.0] - 2018-06-13
### Fixed
* fix payment rate manager typo ([1236](https://github.com/lbryio/lbry/pull/1236))
* handling error from dht clients with old `ping` method
@ -22,10 +44,6 @@ at anytime.
* fixed error when using `claim_show` with `txid` and `nout` arguments
* fixed error when saving server list to conf file ([1209](https://github.com/lbryio/lbry/pull/1209))
### Deprecated
*
*
### Changed
* if the `use_authentication` setting is configured, use authentication for all api methods instead of only those with the `auth_required` decorator
* regenerate api keys on startup if the using authentication
@ -84,6 +102,7 @@ at anytime.
* `AuthJSONRPCServer.auth_required` decorator ([1161](https://github.com/lbryio/lbry/pull/1161))
* `OptimizedTreeRoutingTable` class used by the dht node for the time being
## [0.19.3] - 2018-05-04
### Changed
* download blockchain headers from s3 before starting the wallet when the local height is more than s3_headers_depth (a config setting) blocks behind (https://github.com/lbryio/lbry/pull/1177)

View file

@ -1,6 +1,6 @@
import logging
__version__ = "0.20.0rc14"
__version__ = "0.20.0"
version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler())