Bump version 0.20.1rc5 --> 0.20.1

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2018-06-19 14:05:16 -04:00
parent 10897ef33c
commit e435a9f722
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2
4 changed files with 21 additions and 11 deletions

View file

@ -13,20 +13,15 @@ at anytime.
*
### Fixed
* fixed token validation error when the dht node has just been started (https://github.com/lbryio/lbry/issues/1248)
* fixed a race condition when inserting a blob into the database (https://github.com/lbryio/lbry/issues/1129)
* reflector server incorrectly responding as if it has all the blobs for a stream that was only partially uploaded to it
* `publish` raising a database error when updating a claim that we don't have a file for (https://github.com/lbryio/lbry/issues/1165)
* blob client protocol not tearing itself down properly after a failure (https://github.com/lbryio/lbry/issues/950)
* lockup in wallet startup when one or more lbryumx servers are unavailable (https://github.com/lbryio/lbry/issues/1245)
* download being stopped if the sd blob downloaded and data did not start within the timeout (https://github.com/lbryio/lbry/issues/1172)
*
*
### Deprecated
*
*
### Changed
* `publish` to accept bid as a decimal string
*
*
### Added
@ -38,6 +33,21 @@ at anytime.
*
## [0.20.1] - 2018-06-19
### Fixed
* fixed token validation error when the dht node has just been started (https://github.com/lbryio/lbry/issues/1248)
* fixed a race condition when inserting a blob into the database (https://github.com/lbryio/lbry/issues/1129)
* reflector server incorrectly responding as if it has all the blobs for a stream that was only partially uploaded to it
* `publish` raising a database error when updating a claim that we don't have a file for (https://github.com/lbryio/lbry/issues/1165)
* blob client protocol not tearing itself down properly after a failure (https://github.com/lbryio/lbry/issues/950)
* lockup in wallet startup when one or more lbryumx servers are unavailable (https://github.com/lbryio/lbry/issues/1245)
* download being stopped if the sd blob downloaded and data did not start within the timeout (https://github.com/lbryio/lbry/issues/1172)
### Changed
* Bumped `lbryum` requirement to 3.2.2 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#322---2018-06-19)
* `publish` to accept bid as a decimal string
## [0.20.0] - 2018-06-13
### TL;DR

View file

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

View file

@ -14,7 +14,7 @@ jsonrpc==1.2
jsonrpclib==0.1.7
keyring==10.4.0
git+https://github.com/lbryio/lbryschema.git@v0.0.16rc2#egg=lbryschema
git+https://github.com/lbryio/lbryum.git@v3.2.2rc3#egg=lbryum
git+https://github.com/lbryio/lbryum.git@v3.2.2#egg=lbryum
miniupnpc==1.9
pbkdf2==1.3
pyyaml==3.12

View file

@ -22,7 +22,7 @@ requires = [
'envparse',
'jsonrpc',
'lbryschema==0.0.16rc2',
'lbryum==3.2.2rc3',
'lbryum==3.2.2',
'miniupnpc',
'pyyaml',
'requests',