Skip to content

Commit

Permalink
Released Invoke Release version 4.3.0
Browse files Browse the repository at this point in the history
Changelog Details:
- 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)
  • Loading branch information
eb-fmezzabotta committed Oct 2, 2019
1 parent b4405ad commit 0f07463
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
...
```
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/invoke_release/version.py
Original file line number Diff line number Diff line change
@@ -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]]))

0 comments on commit 0f07463

Please sign in to comment.