Bump version 0.20.0rc14 --> 0.20.0
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
07190c5d69
commit
7030547849
2 changed files with 83 additions and 64 deletions
27
CHANGELOG.md
27
CHANGELOG.md
|
@ -12,6 +12,28 @@ at anytime.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Added
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
|
||||||
|
## [0.20.0] - 2018-06-13
|
||||||
### Fixed
|
### Fixed
|
||||||
* fix payment rate manager typo ([1236](https://github.com/lbryio/lbry/pull/1236))
|
* fix payment rate manager typo ([1236](https://github.com/lbryio/lbry/pull/1236))
|
||||||
* handling error from dht clients with old `ping` method
|
* 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 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))
|
* fixed error when saving server list to conf file ([1209](https://github.com/lbryio/lbry/pull/1209))
|
||||||
|
|
||||||
### Deprecated
|
|
||||||
*
|
|
||||||
*
|
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* if the `use_authentication` setting is configured, use authentication for all api methods instead of only those with the `auth_required` decorator
|
* 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
|
* 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))
|
* `AuthJSONRPCServer.auth_required` decorator ([1161](https://github.com/lbryio/lbry/pull/1161))
|
||||||
* `OptimizedTreeRoutingTable` class used by the dht node for the time being
|
* `OptimizedTreeRoutingTable` class used by the dht node for the time being
|
||||||
|
|
||||||
|
|
||||||
## [0.19.3] - 2018-05-04
|
## [0.19.3] - 2018-05-04
|
||||||
### Changed
|
### 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)
|
* 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)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.20.0rc14"
|
__version__ = "0.20.0"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
Loading…
Add table
Reference in a new issue