diff --git a/CHANGELOG.md b/CHANGELOG.md index 106ce6d525..1327974f08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,28 +13,50 @@ at anytime. * ### Fixed - * fixed the inconsistencies in API and CLI docstrings - * `blob_announce` error when announcing a single blob - * `blob_list` error when looking up blobs by stream or sd hash - * issue#1107 where claiming a channel with the exact amount present in wallet would return a confusing error - * channel creation to use same bid logic as for claims ([1148])(https://github.com/lbryio/lbry/pull/1148) + * + * ### Deprecated - * `report_bug` jsonrpc command + * * ### Changed - * reflector server to periodically check and set `should_announce` for sd and head blobs instead of during each request - * reflector server to use `SQLiteStorage` to find needed blob hashes for a stream + * + * ### Added - * scripts to auto-generate documentation - * now updating new channel also takes into consideration the original bid amount, so now channel could be updated for wallet balance + the original bid amount - * forward-compatibility for upcoming DHT bencoding changes + * + * ### Removed - * short(single dashed) arguments for `lbrynet-cli` * + * + + +## [0.19.1] - 2018-03-20 +### Fixed + * fixed the inconsistencies in API and CLI docstrings + * `blob_announce` error when announcing a single blob + * `blob_list` error when looking up blobs by stream or sd hash + * issue#1107 where claiming a channel with the exact amount present in wallet would return a confusing error + * channel creation to use same bid logic as for claims ([1148])(https://github.com/lbryio/lbry/pull/1148) + +### Deprecated + * `report_bug` jsonrpc command + +### Changed + * Bumped `lbryschema` requirement to 0.0.15 [see changelog](https://github.com/lbryio/lbryschema/blob/master/CHANGELOG.md#0015---2018-03-20) + * Bumped `lbryum` requirement to 3.2.0 [see changelog](https://github.com/lbryio/lbryum/blob/master/CHANGELOG.md#320---2018-03-20) + * reflector server to periodically check and set `should_announce` for sd and head blobs instead of during each request + * reflector server to use `SQLiteStorage` to find needed blob hashes for a stream + +### Added + * scripts to auto-generate documentation + * now updating new channel also takes into consideration the original bid amount, so now channel could be updated for wallet balance + the original bid amount + * forward-compatibility for upcoming DHT bencoding changes + +### Removed + * short(single dashed) arguments for `lbrynet-cli` ## [0.19.0] - 2018-03-02 diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index a435a25463..d82ed08290 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.19.1rc7" +__version__ = "0.19.1" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index 4a0015bf85..cbca7a5c58 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,8 +12,8 @@ GitPython==2.1.3 jsonrpc==1.2 jsonrpclib==0.1.7 keyring==10.4.0 -git+https://github.com/lbryio/lbryschema.git@v0.0.15rc3#egg=lbryschema -git+https://github.com/lbryio/lbryum.git@v3.2.0rc20#egg=lbryum +git+https://github.com/lbryio/lbryschema.git@v0.0.15#egg=lbryschema +git+https://github.com/lbryio/lbryum.git@v3.2.0#egg=lbryum miniupnpc==1.9 pbkdf2==1.3 pycrypto==2.6.1 diff --git a/setup.py b/setup.py index 4c5074a118..d341584e58 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,8 @@ 'base58', 'envparse', 'jsonrpc', - 'lbryschema==0.0.15rc3', - 'lbryum==3.2.0rc20', + 'lbryschema==0.0.15', + 'lbryum==3.2.0', 'miniupnpc', 'pycrypto', 'pyyaml',