Bump version 0.16.1rc1 --> 0.16.1
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
747b098d8b
commit
1b2bd871f4
4 changed files with 12 additions and 5 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -13,8 +13,7 @@ at anytime.
|
|||
*
|
||||
|
||||
### Fixed
|
||||
* Fixed `transaction_list` doc string
|
||||
* Fixed ([in lbryum](https://github.com/lbryio/lbryum/pull/156)) batched queries responsible for making transaction and tip histories slow
|
||||
*
|
||||
*
|
||||
|
||||
### Deprecated
|
||||
|
@ -34,6 +33,14 @@ at anytime.
|
|||
*
|
||||
|
||||
|
||||
## [0.16.1] - 2017-09-20
|
||||
### Fixed
|
||||
* Fixed `transaction_list` doc string
|
||||
* Fixed ([in lbryum](https://github.com/lbryio/lbryum/pull/156)) batched queries responsible for making transaction and tip histories slow
|
||||
|
||||
### Changed
|
||||
* Bumped `lbryum` requirement to 3.1.8 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#318---2017-09-20)
|
||||
|
||||
## [0.16.0] - 2017-09-18
|
||||
### Fixed
|
||||
* Fixed uncaught error when shutting down after a failed daemon startup
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.16.1rc1"
|
||||
__version__ = "0.16.1"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
|
@ -14,7 +14,7 @@ jsonrpc==1.2
|
|||
jsonrpclib==0.1.7
|
||||
jsonschema==2.5.1
|
||||
git+https://github.com/lbryio/lbryschema.git@v0.0.11#egg=lbryschema
|
||||
git+https://github.com/lbryio/lbryum.git@v3.1.8rc1#egg=lbryum
|
||||
git+https://github.com/lbryio/lbryum.git@v3.1.8#egg=lbryum
|
||||
miniupnpc==1.9
|
||||
pbkdf2==1.3
|
||||
pycrypto==2.6.1
|
||||
|
|
2
setup.py
2
setup.py
|
@ -21,7 +21,7 @@ requires = [
|
|||
'envparse',
|
||||
'jsonrpc',
|
||||
'jsonschema',
|
||||
'lbryum==3.1.8rc1',
|
||||
'lbryum==3.1.8',
|
||||
'lbryschema==0.0.11',
|
||||
'miniupnpc',
|
||||
'pycrypto',
|
||||
|
|
Loading…
Reference in a new issue