Bump version 0.14.2rc7 --> 0.14.2
Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
parent
15d672bfe0
commit
bf6bc02828
4 changed files with 41 additions and 22 deletions
53
CHANGELOG.md
53
CHANGELOG.md
|
@ -8,34 +8,53 @@ can and probably will change functionality and break backwards compatability
|
||||||
at anytime.
|
at anytime.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Added
|
### Security
|
||||||
* 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`
|
|
||||||
|
|
||||||
### Fixed
|
### 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
|
### Deprecated
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
|
### Added
|
||||||
|
*
|
||||||
|
*
|
||||||
|
|
||||||
### Removed
|
### 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
|
## [0.14.1] - 2017-07-07
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
__version__ = "0.14.2rc7"
|
__version__ = "0.14.2"
|
||||||
version = tuple(__version__.split('.'))
|
version = tuple(__version__.split('.'))
|
||||||
|
|
||||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||||
|
|
|
@ -13,8 +13,8 @@ gmpy==1.17
|
||||||
jsonrpc==1.2
|
jsonrpc==1.2
|
||||||
jsonrpclib==0.1.7
|
jsonrpclib==0.1.7
|
||||||
jsonschema==2.5.1
|
jsonschema==2.5.1
|
||||||
git+https://github.com/lbryio/lbryschema.git@v0.0.9rc1#egg=lbryschema
|
git+https://github.com/lbryio/lbryschema.git@v0.0.9#egg=lbryschema
|
||||||
git+https://github.com/lbryio/lbryum.git@v3.1.4rc3#egg=lbryum
|
git+https://github.com/lbryio/lbryum.git@v3.1.4#egg=lbryum
|
||||||
miniupnpc==1.9
|
miniupnpc==1.9
|
||||||
pbkdf2==1.3
|
pbkdf2==1.3
|
||||||
pycrypto==2.6.1
|
pycrypto==2.6.1
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -21,8 +21,8 @@ requires = [
|
||||||
'envparse',
|
'envparse',
|
||||||
'jsonrpc',
|
'jsonrpc',
|
||||||
'jsonschema',
|
'jsonschema',
|
||||||
'lbryum==3.1.4rc3',
|
'lbryum==3.1.4',
|
||||||
'lbryschema==0.0.9rc1',
|
'lbryschema==0.0.9',
|
||||||
'miniupnpc',
|
'miniupnpc',
|
||||||
'pycrypto',
|
'pycrypto',
|
||||||
'pyyaml',
|
'pyyaml',
|
||||||
|
|
Loading…
Add table
Reference in a new issue