forked from LBRYCommunity/lbry-sdk
Bump version 0.20.2rc3 --> 0.20.2
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
34febf75f9
commit
12d1b93b5d
4 changed files with 13 additions and 6 deletions
|
@ -21,7 +21,7 @@ at anytime.
|
|||
*
|
||||
|
||||
### Changed
|
||||
* save claims to sqlite in batches to speed up `resolve` queries for many uris
|
||||
*
|
||||
*
|
||||
|
||||
### Added
|
||||
|
@ -33,6 +33,13 @@ at anytime.
|
|||
*
|
||||
|
||||
|
||||
## [0.20.2] - 2018-06-23
|
||||
### Changed
|
||||
* Bumped `lbryschema` requirement to 0.0.16 [see changelog](https://github.com/lbryio/lbryschema/blob/master/CHANGELOG.md#0016---2018-06-23)
|
||||
* Bumped `lbryum` requirement to 3.2.3 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#323---2018-06-23)
|
||||
* save claims to sqlite in batches to speed up `resolve` queries for many uris
|
||||
|
||||
|
||||
## [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)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.20.2rc3"
|
||||
__version__ = "0.20.2"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
|
@ -13,8 +13,8 @@ GitPython==2.1.3
|
|||
jsonrpc==1.2
|
||||
jsonrpclib==0.1.7
|
||||
keyring==10.4.0
|
||||
git+https://github.com/lbryio/lbryschema.git@v0.0.16rc4#egg=lbryschema
|
||||
git+https://github.com/lbryio/lbryum.git@v3.2.3rc2#egg=lbryum
|
||||
git+https://github.com/lbryio/lbryschema.git@v0.0.16#egg=lbryschema
|
||||
git+https://github.com/lbryio/lbryum.git@v3.2.3#egg=lbryum
|
||||
miniupnpc==1.9
|
||||
pbkdf2==1.3
|
||||
pyyaml==3.12
|
||||
|
|
4
setup.py
4
setup.py
|
@ -21,8 +21,8 @@ requires = [
|
|||
'base58',
|
||||
'envparse',
|
||||
'jsonrpc',
|
||||
'lbryschema==0.0.16rc4',
|
||||
'lbryum==3.2.3rc2',
|
||||
'lbryschema==0.0.16',
|
||||
'lbryum==3.2.3',
|
||||
'miniupnpc',
|
||||
'pyyaml',
|
||||
'requests',
|
||||
|
|
Loading…
Reference in a new issue