From 8495e623295ebbf3745a0b1cac6c2751ce01a8de Mon Sep 17 00:00:00 2001 From: Alex Grintsvayg Date: Tue, 25 Apr 2017 16:22:53 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.0rc15=20=E2=86=92=200.10?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 32 +++++++++++++++++++++----------- lbrynet/__init__.py | 2 +- 3 files changed, 23 insertions(+), 13 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bbb69e68c..60a2fd357 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0rc15 +current_version = 0.10.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index deaa5c361..0faaa1a17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,20 +9,30 @@ at anytime. ## [Unreleased] ### Added - * Add `lbryschema_version` to response from `version` - * Added call to `get_address_balance` when `address` conditional returns true - * Added `address` conditional to `jsonrpc_wallet_balance` - * Added `get_address_balance` method to the `Wallet` class + * + * ### Changed - * Added optional `address` and `include_unconfirmed` params to `jsonrpc_wallet_balance` method - * Wait for subscriptions before announcing wallet has finished starting - -### Fixed - * fix stream_cost_estimate throwing exception on non decodeable claims - * fixed signing of Windows binaries - * fixed a few pylint warnings * + * + +### Fixed + * + * + +## [0.10.0] - 2017-04-25 +### Added + * Add `lbryschema_version` to response from `version` + * Added call to `get_address_balance` when `address` conditional returns true + * Added `address` conditional to `jsonrpc_wallet_balance` + * Added `get_address_balance` method to the `Wallet` class +### Changed + * Added optional `address` and `include_unconfirmed` params to `jsonrpc_wallet_balance` method + * Wait for subscriptions before announcing wallet has finished starting +### Fixed + * fix stream_cost_estimate throwing exception on non decodeable claims + * fixed signing of Windows binaries + * fixed a few pylint warnings ## [0.10.0rc2] - 2017-04-17 ### Changed diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index 11d087f1e..e1d20297a 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.10.0rc15" +__version__ = "0.10.0" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())