Bump version: 0.10.0rc1 → 0.10.0rc2

This commit is contained in:
Alex Grintsvayg 2017-04-17 10:46:37 -04:00
parent 41204f7cbe
commit 6c0f805ec3
3 changed files with 7 additions and 3 deletions

View file

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

View file

@ -14,7 +14,7 @@ at anytime.
*
### Changed
* Return full `lbry_id` and `installation_id` from `status`
*
*
*
@ -23,6 +23,10 @@ at anytime.
*
*
## [0.10.0rc2] - 2017-04-17
### Changed
* Return full `lbry_id` and `installation_id` from `status`
## [0.10.0rc1] - 2017-04-13
### Fixed
* Fix uncaught exception in `stream_cost_estimate`

View file

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