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,35 +12,51 @@ at anytime.
* *
* *
### 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
### Fixed ### Fixed
* Fixed reflector server blocking the `received_blob` reply on the server announcing the blob to the dht
* *
* Fixed incorrect formatting of "amount" fields
* Fixed handling of SIGINT, SIGTERM.
* Fixed shutdown sequence
* 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. *
* Deprecated `send_amount_to_address` in favor of `wallet_send` *
### Changed ### Changed
* Renamed `reflect` command to `file_reflect` *
* Allow IP addresses to be configured as reflector servers, not just host names. *
* Return list of blobs that were reflected from `file_reflect`
### Added
*
*
### Removed ### Removed
* *
* *
## [0.15.0] - 2017-08-15
### Fixed
* Fixed reflector server blocking the `received_blob` reply on the server announcing the blob to the dht
* Fixed incorrect formatting of "amount" fields
* Fixed handling of SIGINT, SIGTERM.
* Fixed shutdown sequence
* Fix error when resolving an integer
### Deprecated
* The API will no longer be served at the /lbryapi path. It will now be at the root.
* Deprecated `send_amount_to_address` in favor of `wallet_send`
### Changed
* Renamed `reflect` command to `file_reflect`
* Allow IP addresses to be configured as reflector servers, not just host names.
* Return list of blobs that were reflected from `file_reflect`
### 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
### Fixed ### Fixed
* Fixed incorrect formatting of "amount" fields * Fixed incorrect formatting of "amount" fields

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())