Bump version 0.21.1rc2 --> 0.21.1

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2018-08-13 16:20:16 -04:00
parent a9774a293f
commit 0d54f6215f
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
4 changed files with 17 additions and 6 deletions

View file

@ -13,8 +13,8 @@ at anytime.
*
### Fixed
* `download_progress` field in `blockchain_headers` section of `status` not initializing correctly when resuming a download (https://github.com/lbryio/lbry/issues/1355)
* `wallet_send` not accepting decimal amounts (https://github.com/lbryio/lbry/issues/1356 commit https://github.com/lbryio/lbry/commit/1098ca0494ece420c70fc57f69d6d388715a99b8)
*
*
### Deprecated
*
@ -25,7 +25,7 @@ at anytime.
*
### Added
* `is_locked` to `wallet` in `status` response (https://github.com/lbryio/lbry/issues/1354, commit https://github.com/lbryio/lbry/commit/153022a1a7122ab6d31d3db433dccbe469bbcb3c)
*
*
### Removed
@ -33,6 +33,17 @@ at anytime.
*
## [0.21.1] - 2018-08-13
### Fixed
* `download_progress` field in `blockchain_headers` section of `status` not initializing correctly when resuming a download (https://github.com/lbryio/lbry/issues/1355)
* `wallet_send` not accepting decimal amounts (https://github.com/lbryio/lbry/issues/1356 commit https://github.com/lbryio/lbry/commit/1098ca0494ece420c70fc57f69d6d388715a99b8)
### Added
* `is_locked` to `wallet` in `status` response (https://github.com/lbryio/lbry/issues/1354, commit https://github.com/lbryio/lbry/commit/153022a1a7122ab6d31d3db433dccbe469bbcb3c)
### Changed
* Bumped `lbryum` requirement to 3.2.4 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#324---2018-08-13)
## [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)

View file

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

View file

@ -13,7 +13,7 @@ GitPython==2.1.3
jsonrpc==1.2
keyring==10.4.0
git+https://github.com/lbryio/lbryschema.git@v0.0.16#egg=lbryschema
git+https://github.com/lbryio/lbryum.git@v3.2.4rc1#egg=lbryum
git+https://github.com/lbryio/lbryum.git@v3.2.4#egg=lbryum
miniupnpc==1.9
pbkdf2==1.3
pyyaml==3.12

View file

@ -22,7 +22,7 @@ requires = [
'envparse',
'jsonrpc',
'lbryschema==0.0.16',
'lbryum==3.2.4rc1',
'lbryum==3.2.4',
'miniupnpc',
'txupnp==0.0.1a10',
'pyyaml',