From 518146396cd1a97f894ee73d8f7b54eb3e769bff Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Tue, 15 Aug 2017 12:07:17 -0400 Subject: [PATCH] Bump version 0.15.0rc8 --> 0.15.0 Signed-off-by: Jack Robison --- CHANGELOG.md | 48 ++++++++++++++++++++++++++++++--------------- lbrynet/__init__.py | 2 +- 2 files changed, 33 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7335fcac3..a9e814d9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 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 + * + * ### 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 ### Fixed * Fixed incorrect formatting of "amount" fields diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 7827c3409..5480a0555 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.15.0rc8" +__version__ = "0.15.0" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())