Bump version: 0.9.1rc4 → 0.9.1rc5

This commit is contained in:
Alex Grintsvayg 2017-03-16 17:56:25 -04:00
parent 15517732ae
commit b00c20180b
3 changed files with 13 additions and 6 deletions

View file

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

View file

@ -9,8 +9,7 @@ at anytime.
## [Unreleased]
### Added
* publish API command can take metadata fields as arguments
* Added `reflect_uploads` config to disable reflecting on upload
*
*
*
@ -20,9 +19,17 @@ at anytime.
*
### Fixed
* Fixed jsonrpc_reflect()
* Fixed api help return
*
*
*
## [0.9.1rc5] - 2017-03-16
### Added
* publish API command can take metadata fields as arguments
* Added `reflect_uploads` config to disable reflecting on upload
### Fixed
* Fixed jsonrpc_reflect()
* Fixed api help return
## [0.9.1rc2] - 2017-03-15
### Added

View file

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