diff --git a/CHANGELOG.md b/CHANGELOG.md index 90f97aba5..9d69eac53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,9 +13,8 @@ at anytime. * ### Fixed - * incorrectly raised download cancelled error for already verified blob files - * infinite loop where reflector client keeps trying to send failing blobs, which may be failing because they are invalid and thus will never be successfully received - * docstring bugs for `stream_availability`, `channel_import`, and `blob_announce` + * + * ### Deprecated * @@ -26,13 +25,29 @@ at anytime. * ### Added - * `blob_reflect` command to send specific blobs to a reflector server - * unit test for docopt - -### Removed - * `flags` decorator from server.py as short flags are no longer used when using api/cli methods + * * +### Removed + * + * + + +## [0.19.2] - 2018-03-28 +### Fixed + * incorrectly raised download cancelled error for already verified blob files + * infinite loop where reflector client keeps trying to send failing blobs, which may be failing because they are invalid and thus will never be successfully received + * docstring bugs for `stream_availability`, `channel_import`, and `blob_announce` + +### Added + * `blob_reflect` command to send specific blobs to a reflector server + * unit test for docopt + +### Removed + * `flags` decorator from server.py as short flags are no longer used when using api/cli methods + +### Changed + * Bumped `lbryum` requirement to 3.2.1 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#321---2018-03-28) ## [0.19.1] - 2018-03-20 ### Fixed diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index e96b1fd78..bae1eefe2 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.19.2rc3" +__version__ = "0.19.2" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index 859adfdab..37361b412 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,7 +13,7 @@ jsonrpc==1.2 jsonrpclib==0.1.7 keyring==10.4.0 git+https://github.com/lbryio/lbryschema.git@v0.0.15#egg=lbryschema -git+https://github.com/lbryio/lbryum.git@v3.2.1rc2#egg=lbryum +git+https://github.com/lbryio/lbryum.git@v3.2.1#egg=lbryum miniupnpc==1.9 pbkdf2==1.3 pycrypto==2.6.1 diff --git a/setup.py b/setup.py index 22540b0ff..7027c6a32 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ requires = [ 'envparse', 'jsonrpc', 'lbryschema==0.0.15', - 'lbryum==3.2.1rc2', + 'lbryum==3.2.1', 'miniupnpc', 'pycrypto', 'pyyaml',