aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--py_release_tools/commands.py1
-rwxr-xr-xsetup.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/py_release_tools/commands.py b/py_release_tools/commands.py
index 1570447..b36d893 100644
--- a/py_release_tools/commands.py
+++ b/py_release_tools/commands.py
@@ -94,6 +94,7 @@ class IncrementSemanticVersion(SimpleCommand):
94 "commit all changes before release") 94 "commit all changes before release")
95 95
96 new_version = self._update_version() 96 new_version = self._update_version()
97 self.distribution.metadata.version = new_version
97 98
98 check_output([ 99 check_output([
99 "git", "commit", "-a", "-m", "Release {}".format(new_version)]) 100 "git", "commit", "-a", "-m", "Release {}".format(new_version)])
diff --git a/setup.py b/setup.py
index f6b9442..bfe7139 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
4 4
5setup( 5setup(
6 name="py_release_tools", 6 name="py_release_tools",
7 version="0.1.2", 7 version="0.1.3",
8 description="Python release tools", 8 description="Python release tools",
9 long_description=open("README.rst", "r").read(), 9 long_description=open("README.rst", "r").read(),
10 author="Mike Crute", 10 author="Mike Crute",