diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c2e1abf5..831df2d18 100644 --- a/CHANGELOG.md +++ b/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 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 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 0e1d5be5c..2e3dc48ab 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.16.0rc9" +__version__ = "0.16.0" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index ab6a8960c..d84091788 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index d9388fa52..54f705996 100644 --- a/setup.py +++ b/setup.py @@ -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',