From 1b2bd871f4d5ba8b37de64118b0fe82182ac4b7f Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Wed, 20 Sep 2017 10:24:44 -0400 Subject: [PATCH] Bump version 0.16.1rc1 --> 0.16.1 Signed-off-by: Jack Robison --- CHANGELOG.md | 11 +++++++++-- lbrynet/__init__.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e163dcde..29ac605d5 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 54e6303bd..df9c9bb7c 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.16.1rc1" +__version__ = "0.16.1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index 33bef51ad..1f3bda1d7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/setup.py b/setup.py index 5eb75f0b1..e795636f5 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ requires = [ 'envparse', 'jsonrpc', 'jsonschema', - 'lbryum==3.1.8rc1', + 'lbryum==3.1.8', 'lbryschema==0.0.11', 'miniupnpc', 'pycrypto',