Bump version 0.16.0rc9 --> 0.16.0
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
1a503dd94b
commit
1f5b2203d7
4 changed files with 28 additions and 15 deletions
33
CHANGELOG.md
33
CHANGELOG.md
|
@ -12,16 +12,8 @@ at anytime.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Added
|
|
||||||
* Added option to announce head blob only if seeding
|
|
||||||
* Added option to download by seeking head blob first
|
|
||||||
* By default, option to download seeking head blob first is turned on
|
|
||||||
* Added `include_tip_info` param to `transaction_list` API call
|
|
||||||
*
|
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
* Fixed uncaught error when shutting down after a failed daemon startup
|
*
|
||||||
* Fixed spelling error in documentation.
|
|
||||||
*
|
*
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
@ -29,7 +21,11 @@ at anytime.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Updated exchange rate tests for the lbry.io api
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Added
|
||||||
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
@ -37,6 +33,23 @@ at anytime.
|
||||||
*
|
*
|
||||||
|
|
||||||
|
|
||||||
|
## [0.16.0] - 2017-09-18
|
||||||
|
### Fixed
|
||||||
|
* Fixed uncaught error when shutting down after a failed daemon startup
|
||||||
|
* Fixed spelling error in documentation.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
* Bumped `lbryschema` requirement to 0.0.11 [see changelog](https://github.com/lbryio/lbryschema/blob/master/CHANGELOG.md#0011---2017-09-18)
|
||||||
|
* Bumped `lbryum` requirement to 3.1.7 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#317---2017-09-18)
|
||||||
|
* Updated exchange rate tests for the lbry.io api
|
||||||
|
|
||||||
|
### Added
|
||||||
|
* Added option to announce head blob only if seeding
|
||||||
|
* Added option to download by seeking head blob first
|
||||||
|
* By default, option to download seeking head blob first is turned on
|
||||||
|
* Added `include_tip_info` param to `transaction_list` API call
|
||||||
|
|
||||||
|
|
||||||
## [0.15.2] - 2017-09-07
|
## [0.15.2] - 2017-09-07
|
||||||
### Changed
|
### Changed
|
||||||
* Use lbry.io exchange rate API instead of google finance
|
* Use lbry.io exchange rate API instead of google finance
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.16.0rc9"
|
__version__ = "0.16.0"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
|
@ -13,8 +13,8 @@ gmpy==1.17
|
||||||
jsonrpc==1.2
|
jsonrpc==1.2
|
||||||
jsonrpclib==0.1.7
|
jsonrpclib==0.1.7
|
||||||
jsonschema==2.5.1
|
jsonschema==2.5.1
|
||||||
git+https://github.com/lbryio/lbryschema.git@v0.0.11rc1#egg=lbryschema
|
git+https://github.com/lbryio/lbryschema.git@v0.0.11#egg=lbryschema
|
||||||
git+https://github.com/lbryio/lbryum.git@v3.1.7rc6#egg=lbryum
|
git+https://github.com/lbryio/lbryum.git@v3.1.7#egg=lbryum
|
||||||
miniupnpc==1.9
|
miniupnpc==1.9
|
||||||
pbkdf2==1.3
|
pbkdf2==1.3
|
||||||
pycrypto==2.6.1
|
pycrypto==2.6.1
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -21,8 +21,8 @@ requires = [
|
||||||
'envparse',
|
'envparse',
|
||||||
'jsonrpc',
|
'jsonrpc',
|
||||||
'jsonschema',
|
'jsonschema',
|
||||||
'lbryum==3.1.7rc6',
|
'lbryum==3.1.7',
|
||||||
'lbryschema==0.0.11rc1',
|
'lbryschema==0.0.11',
|
||||||
'miniupnpc',
|
'miniupnpc',
|
||||||
'pycrypto',
|
'pycrypto',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
|
|
Loading…
Reference in a new issue