diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 024c401..cc93952 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,12 @@ Changelog ========= +4.3.0 (2019-10-02) +------------------ +- Improve `invoke release` workflow by suggesting a version to bump to. (#18) +- Fix: When using PRs it should go back to the current_branch instead of master. +- [PATCH] Fix typo in cherry-pick prompt message (#17) + 4.2.0 (2019-09-12) ------------------ - [MINOR] Automate creation of branch for cherry-picks/fixes. diff --git a/README.md b/README.md index d341782..6230742 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ properly and that the tools are installed on your machine: $ invoke version Python 2.7.11 (default, Jun 17 2016, 09:29:41) Invoke 0.22.0 -Invoke Release 4.2.0 +Invoke Release 4.3.0 My Project 2.1.0 Detected Git branch: master Detected version file: /path/to/my/project/module/version.py @@ -79,7 +79,7 @@ directory and follow the on-screen instructions: ``` $ invoke release -Invoke Release 4.2.0 +Invoke Release 4.3.0 Releasing My Project... Current version: 2.1.0 Enter a new version (or "exit"): 2.2.0 @@ -95,7 +95,7 @@ then commit (or cherry-pick, as the case may be) your fix, and from which you ca ``` $ invoke branch -Invoke Release 4.2.0 +Invoke Release 4.3.0 Enter a version tag from which to create a new branch (or "exit"): 2.0.0 ... ``` @@ -221,7 +221,7 @@ and verify the output. Address any errors that you see. $ invoke version Python 2.7.11 (default, Jun 17 2016, 09:29:41) Invoke 0.22.0 -Invoke Release 4.2.0 +Invoke Release 4.3.0 PySOA 0.26.1 Detected Git branch: master Detected version file: /path/to/pysoa-project/pysoa/version.py diff --git a/python/invoke_release/version.py b/python/invoke_release/version.py index c7f8816..c208cc4 100644 --- a/python/invoke_release/version.py +++ b/python/invoke_release/version.py @@ -1,5 +1,5 @@ from __future__ import unicode_literals -__version_info__ = (4, 2, 0) +__version_info__ = (4, 3, 0) __version__ = '-'.join(filter(None, ['.'.join(map(str, __version_info__[:3])), (__version_info__[3:] or [None])[0]]))