Bump version 0.21.0rc13 --> 0.21.0

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2018-08-09 13:44:28 -04:00
parent 56ee815eec
commit d4a7dbf805
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
2 changed files with 55 additions and 34 deletions

View file

@ -12,6 +12,28 @@ at anytime.
*
*
### Fixed
*
*
### Deprecated
*
*
### Changed
*
*
### Added
*
*
### Removed
*
*
## [0.21.0] - 2018-08-09
### Fixed
* check `claim_address` and `change_address` earlier on publishing, to avoid hard to understand errors later in the process (pr https://github.com/lbryio/lbry/pull/1347)
* loggly error reporting not following `share_usage_data` (pr https://github.com/lbryio/lbry/pull/1328)
@ -24,7 +46,6 @@ at anytime.
### Deprecated
* automatic claim renew, this is no longer needed
*
### Changed
* api server class to use components, and for all JSONRPC API commands to be callable so long as the required components are available. (pr https://github.com/lbryio/lbry/pull/1294)

View file

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