Bump version: 0.10.3rc5 → 0.10.3

This commit is contained in:
Jeremy Kauffman 2017-05-23 16:19:57 -04:00
parent 05c44eab08
commit c8142a2fb2
3 changed files with 26 additions and 12 deletions

View file

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.3rc5
current_version = 0.10.3
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))?

View file

@ -9,22 +9,15 @@ at anytime.
## [Unreleased]
### Added
* Add decorator to support queueing api calls
* Added force option to API command resolve
*
*
### Changed
*
*
* Added optional `address` and `include_unconfirmed` params to `jsonrpc_wallet_balance` method
* Wait for subscriptions before announcing wallet has finished starting
* Cache claims in wallet storage for use looking claims up by id or outpoint
* Try to use cached claim info for `file_list`
* Convert wallet storage to inlinecallbacks
* Improve internal name_metadata sqlite table
### Fixed
* Fix race condition in publish that resulted in claims being rejected when making many publishes concurrently
*
*
### Deprecated
@ -35,6 +28,27 @@ at anytime.
*
*
## [0.10.3] - 2017-05-23
### Added
* Add decorator to support queueing api calls
* Added force option to API command resolve
### Changed
* Added optional `address` and `include_unconfirmed` params to `jsonrpc_wallet_balance` method
* Wait for subscriptions before announcing wallet has finished starting
* Cache claims in wallet storage for use looking claims up by id or outpoint
* Try to use cached claim info for `file_list`
* Convert wallet storage to inlinecallbacks
* Improve internal name_metadata sqlite table
### Fixed
* Fix race condition in publish that resulted in claims being rejected when making many publishes concurrently
## [0.10.1] - 2017-05-03
### Fixed

View file

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