Bump version 0.20.1rc5 --> 0.20.1
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
10897ef33c
commit
e435a9f722
4 changed files with 21 additions and 11 deletions
26
CHANGELOG.md
26
CHANGELOG.md
|
@ -13,20 +13,15 @@ at anytime.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Fixed
|
### 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
|
### Deprecated
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* `publish` to accept bid as a decimal string
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Added
|
### 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
|
## [0.20.0] - 2018-06-13
|
||||||
|
|
||||||
### TL;DR
|
### TL;DR
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.20.1rc5"
|
__version__ = "0.20.1"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
|
@ -14,7 +14,7 @@ jsonrpc==1.2
|
||||||
jsonrpclib==0.1.7
|
jsonrpclib==0.1.7
|
||||||
keyring==10.4.0
|
keyring==10.4.0
|
||||||
git+https://github.com/lbryio/lbryschema.git@v0.0.16rc2#egg=lbryschema
|
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
|
miniupnpc==1.9
|
||||||
pbkdf2==1.3
|
pbkdf2==1.3
|
||||||
pyyaml==3.12
|
pyyaml==3.12
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -22,7 +22,7 @@ requires = [
|
||||||
'envparse',
|
'envparse',
|
||||||
'jsonrpc',
|
'jsonrpc',
|
||||||
'lbryschema==0.0.16rc2',
|
'lbryschema==0.0.16rc2',
|
||||||
'lbryum==3.2.2rc3',
|
'lbryum==3.2.2',
|
||||||
'miniupnpc',
|
'miniupnpc',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
'requests',
|
'requests',
|
||||||
|
|
Loading…
Reference in a new issue