forked from LBRYCommunity/lbry-sdk
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
47
CHANGELOG.md
47
CHANGELOG.md
|
@ -8,17 +8,32 @@ 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.
|
||||
### Security
|
||||
*
|
||||
*
|
||||
|
||||
### Fixed
|
||||
*
|
||||
*
|
||||
|
||||
### Deprecated
|
||||
*
|
||||
*
|
||||
|
||||
### 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
|
||||
*
|
||||
*
|
||||
|
||||
### Removed
|
||||
*
|
||||
*
|
||||
|
||||
|
||||
## [0.14.2] - 2017-07-24
|
||||
### Fixed
|
||||
* Fix for https://github.com/lbryio/lbry/issues/750
|
||||
* Fixed inconsistencies in claim_show output
|
||||
|
@ -28,13 +43,17 @@ at anytime.
|
|||
* Fixed https://github.com/lbryio/lbry/issues/760
|
||||
* Fixed default directories bug
|
||||
|
||||
### Deprecated
|
||||
*
|
||||
*
|
||||
### 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.
|
||||
|
||||
### Removed
|
||||
*
|
||||
*
|
||||
|
||||
## [0.14.1] - 2017-07-07
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.14.2rc7"
|
||||
__version__ = "0.14.2"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
|
@ -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
|
||||
|
|
4
setup.py
4
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',
|
||||
|
|
Loading…
Reference in a new issue