forked from LBRYCommunity/lbry-sdk
Bump version: 0.10.0rc15 → 0.10.0
This commit is contained in:
parent
d438bfdf0e
commit
8495e62329
3 changed files with 23 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 0.10.0rc15
|
||||
current_version = 0.10.0
|
||||
commit = True
|
||||
tag = True
|
||||
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?
|
||||
|
|
32
CHANGELOG.md
32
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
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
__version__ = "0.10.0rc15"
|
||||
__version__ = "0.10.0"
|
||||
version = tuple(__version__.split('.'))
|
||||
|
||||
logging.getLogger(__name__).addHandler(logging.NullHandler())
|
||||
|
|
Loading…
Reference in a new issue