Bump version 0.16.0rc9 --> 0.16.0

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2017-09-18 10:14:41 -04:00
parent 1a503dd94b
commit 1f5b2203d7
No known key found for this signature in database
GPG key ID: 284699E7404E3CFF
4 changed files with 28 additions and 15 deletions

View file

@ -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 uncaught error when shutting down after a failed daemon startup
* Fixed spelling error in documentation.
*
*
### Deprecated
@ -29,7 +21,11 @@ at anytime.
*
### Changed
* Updated exchange rate tests for the lbry.io api
*
*
### Added
*
*
### 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
### Changed
* Use lbry.io exchange rate API instead of google finance

View file

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

View file

@ -13,8 +13,8 @@ gmpy==1.17
jsonrpc==1.2
jsonrpclib==0.1.7
jsonschema==2.5.1
git+https://github.com/lbryio/lbryschema.git@v0.0.11rc1#egg=lbryschema
git+https://github.com/lbryio/lbryum.git@v3.1.7rc6#egg=lbryum
git+https://github.com/lbryio/lbryschema.git@v0.0.11#egg=lbryschema
git+https://github.com/lbryio/lbryum.git@v3.1.7#egg=lbryum
miniupnpc==1.9
pbkdf2==1.3
pycrypto==2.6.1

View file

@ -21,8 +21,8 @@ requires = [
'envparse',
'jsonrpc',
'jsonschema',
'lbryum==3.1.7rc6',
'lbryschema==0.0.11rc1',
'lbryum==3.1.7',
'lbryschema==0.0.11',
'miniupnpc',
'pycrypto',
'pyyaml',