Bump version: 0.13.1rc2 → 0.13.1

This commit is contained in:
Jack Robison 2017-06-15 20:25:07 -04:00
parent a822d05692
commit 2725f384d9
3 changed files with 36 additions and 15 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.13.1rc2 current_version = 0.13.1
commit = True commit = True
tag = True tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<candidate>\d+))? 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] ## [Unreleased]
### Added ### Added
* Add `claim_send_to_address` *
* Add `change_address` argument to `publish` *
* Add `unique_contacts` count to `status` response
### Changed ### Changed
* Support resolution of multiple uris with `resolve`, all results are keyed by uri *
* Add `error` responses for failed resolves *
* Add `claim_list_by_channel`, supports multiple channel resolution
* Rename delete_target_file argument of delete API command to delete_from_download_dir
* Rename delete_all CLI flag -a to --delete_all
### Fixed ### Fixed
* Race condition from improper initialization and shutdown of the blob manager database *
* Various fixes for GetStream class used in API command get
* Download analytics error
* Fixed flag options in file_delete API command
* *
### Deprecated ### Deprecated
@ -32,8 +25,36 @@ at anytime.
* *
### Removed ### Removed
* Remove `claims_in_channel` from `resolve` response
* *
*
## [0.13.1] - 2017-06-15
### Added
* Add `claim_send_to_address`
* Add `change_address` argument to `publish`
* Add `unique_contacts` count to `status` response
### Changed
* Support resolution of multiple uris with `resolve`, all results are keyed by uri
* Add `error` responses for failed resolves
* Add `claim_list_by_channel`, supports multiple channel resolution
* Rename delete_target_file argument of delete API command to delete_from_download_dir
* Rename delete_all CLI flag -a to --delete_all
### Removed
* Remove `claims_in_channel` from `resolve` response
### Fixed
* Race condition from improper initialization and shutdown of the blob manager database
* Various fixes for GetStream class used in API command get
* Download analytics error
* Fixed flag options in file_delete API command
## [0.11.0] - 2017-06-09 ## [0.11.0] - 2017-06-09

View file

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