Bump version 0.15.0rc8 --> 0.15.0

Signed-off-by: Jack Robison <jackrobison@lbry.io>
This commit is contained in:
Jack Robison 2017-08-15 12:07:17 -04:00
parent f4ed2ec503
commit 518146396c
No known key found for this signature in database
GPG key ID: 284699E7404E3CFF
2 changed files with 33 additions and 17 deletions

View file

@ -12,20 +12,34 @@ at anytime.
* *
* *
### Added ### Fixed
* Added `wallet_send`, a command to send credits and tips *
* Added `reflector` keyword parameter to `file_reflect` command *
* Added configuration options for auto re-reflect
* Added option to abandon by txid/nout
### Deprecated
*
*
### Changed
*
*
### Added
*
*
### Removed
*
*
## [0.15.0] - 2017-08-15
### Fixed ### Fixed
* Fixed reflector server blocking the `received_blob` reply on the server announcing the blob to the dht * Fixed reflector server blocking the `received_blob` reply on the server announcing the blob to the dht
*
* Fixed incorrect formatting of "amount" fields * Fixed incorrect formatting of "amount" fields
* Fixed handling of SIGINT, SIGTERM. * Fixed handling of SIGINT, SIGTERM.
* Fixed shutdown sequence * Fixed shutdown sequence
* Fix error when resolving an integer * Fix error when resolving an integer
*
### Deprecated ### Deprecated
* The API will no longer be served at the /lbryapi path. It will now be at the root. * The API will no longer be served at the /lbryapi path. It will now be at the root.
@ -36,9 +50,11 @@ at anytime.
* Allow IP addresses to be configured as reflector servers, not just host names. * Allow IP addresses to be configured as reflector servers, not just host names.
* Return list of blobs that were reflected from `file_reflect` * Return list of blobs that were reflected from `file_reflect`
### Removed ### Added
* * Added `wallet_send`, a command to send credits and tips
* * Added `reflector` keyword parameter to `file_reflect` command
* Added configuration options for auto re-reflect
* Added option to abandon by txid/nout
## [0.14.3] - 2017-08-04 ## [0.14.3] - 2017-08-04

View file

@ -1,6 +1,6 @@
import logging import logging
__version__ = "0.15.0rc8" __version__ = "0.15.0"
version = tuple(__version__.split('.')) version = tuple(__version__.split('.'))
logging.getLogger(__name__).addHandler(logging.NullHandler()) logging.getLogger(__name__).addHandler(logging.NullHandler())