diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bbca8eb7..4d7a47888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,34 +8,53 @@ can and probably will change functionality and break backwards compatability at anytime. ## [Unreleased] -### Added - * Add link to instructions on how to change the default peer port - * Add `peer_port` to settings configurable using `settings_set` - * Added an option to disable max key fee check. - -### Changed - * claim_show API command no longer takes name as argument - * Linux default downloads folder changed from `~/Downloads` to `XDG_DOWNLOAD_DIR` - * Linux folders moved from the home directory to `~/.local/share/lbry` - * Windows folders moved from `%AppData%/Roaming` to `%AppData%/Local/lbry` +### Security + * + * ### Fixed - * Fix for https://github.com/lbryio/lbry/issues/750 - * Fixed inconsistencies in claim_show output - * Fixed daemon process hanging when started without an internet connection - * Fixed https://github.com/lbryio/lbry/issues/774 - * Fix XDG compliance on Linux - * Fixed https://github.com/lbryio/lbry/issues/760 - * Fixed default directories bug + * + * ### Deprecated * * +### Changed + * + * + +### Added + * + * + ### Removed * * + +## [0.14.2] - 2017-07-24 +### Fixed + * Fix for https://github.com/lbryio/lbry/issues/750 + * Fixed inconsistencies in claim_show output + * Fixed daemon process hanging when started without an internet connection + * Fixed https://github.com/lbryio/lbry/issues/774 + * Fix XDG compliance on Linux + * Fixed https://github.com/lbryio/lbry/issues/760 + * Fixed default directories bug + +### Changed + * claim_show API command no longer takes name as argument + * Linux default downloads folder changed from `~/Downloads` to `XDG_DOWNLOAD_DIR` + * Linux folders moved from the home directory to `~/.local/share/lbry` + * Windows folders moved from `%AppData%/Roaming` to `%AppData%/Local/lbry` + +### Added + * Add link to instructions on how to change the default peer port + * Add `peer_port` to settings configurable using `settings_set` + * Added an option to disable max key fee check. + + ## [0.14.1] - 2017-07-07 ### Fixed diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 3422f2983..8c9c80197 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.14.2rc7" +__version__ = "0.14.2" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/requirements.txt b/requirements.txt index 3b46b86fd..c63ea8492 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.9rc1#egg=lbryschema -git+https://github.com/lbryio/lbryum.git@v3.1.4rc3#egg=lbryum +git+https://github.com/lbryio/lbryschema.git@v0.0.9#egg=lbryschema +git+https://github.com/lbryio/lbryum.git@v3.1.4#egg=lbryum miniupnpc==1.9 pbkdf2==1.3 pycrypto==2.6.1 diff --git a/setup.py b/setup.py index 7b413ca87..9e20b8d6b 100644 --- a/setup.py +++ b/setup.py @@ -21,8 +21,8 @@ requires = [ 'envparse', 'jsonrpc', 'jsonschema', - 'lbryum==3.1.4rc3', - 'lbryschema==0.0.9rc1', + 'lbryum==3.1.4', + 'lbryschema==0.0.9', 'miniupnpc', 'pycrypto', 'pyyaml',