Bump version: 0.9.2rc24 → 0.10.0rc1

This commit is contained in:
Alex Grintsvayg 2017-04-13 13:15:25 -04:00
parent 342ae231ea
commit e8bccec71c
3 changed files with 7 additions and 3 deletions

View file

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

View file

@ -19,9 +19,13 @@ at anytime.
*
### Fixed
* Fix uncaught exception in `stream_cost_estimate`
*
*
*
## [0.10.0rc1] - 2017-04-13
### Fixed
* Fix uncaught exception in `stream_cost_estimate`
## [0.9.2rc22] - 2017-04-12
### Added

View file

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