diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1e6cef42b..4033de759 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0rc16 +current_version = 0.9.0rc17 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/CHANGELOG.md b/CHANGELOG.md index f472c4e63..70c234999 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,14 +19,17 @@ at anytime. * ### Fixed - * Added string comparison to ClaimOutpoint (needed to look things up by outpoint) - * Remove unused API commands from daemon - * Fix file filter `outpoint` - * Made dictionary key names in API commmand outputs to be more consistent * * * +## [0.9.0rc17] - 2017-03-10 +### Fixed + * Added string comparison to ClaimOutpoint (needed to look things up by outpoint) + * Remove unused API commands from daemon + * Fix file filter `outpoint` + * Made dictionary key names in API commmand outputs to be more consistent + ## [0.9.0rc15] - 2017-03-09 ### Added * Add file filters: `claim_id`, `outpoint`, and `rowid` diff --git a/lbrynet/__init__.py b/lbrynet/__init__.py index fa869e9c7..8bcfe926c 100644 --- a/lbrynet/__init__.py +++ b/lbrynet/__init__.py @@ -1,6 +1,6 @@ import logging -__version__ = "0.9.0rc16" +__version__ = "0.9.0rc17" version = tuple(__version__.split('.')) logging.getLogger(__name__).addHandler(logging.NullHandler())