Skip to content

Commit

Permalink
Update version_bump.py to v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Limych committed Sep 13, 2020
1 parent 041c9f1 commit 392e336
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/version_bump.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

_LOGGER = logging.getLogger(__name__)

VERSION = "1.3.0"
VERSION = "1.3.1"

ROOT = os.path.dirname(os.path.abspath(f"{__file__}/.."))

Expand Down Expand Up @@ -270,7 +270,7 @@ def main():
subprocess.run(["git", "commit", "-nam", f"Bump version to {bumped}"])

if arguments.tag:
subprocess.run(["git", "tag", f"v{bumped}"])
subprocess.run(["git", "tag", f"v{bumped}", "-am", f"Tagging version {bumped}"])


# pylint: disable=import-outside-toplevel
Expand Down

0 comments on commit 392e336

Please sign in to comment.