Franck Pommereau

added tags on new versions

Showing 1 changed file with 3 additions and 0 deletions
...@@ -8,7 +8,10 @@ all: ...@@ -8,7 +8,10 @@ all:
8 @echo " pip upload to PyPI" 8 @echo " pip upload to PyPI"
9 9
10 nextver: 10 nextver:
11 + git diff-index --quiet HEAD --
11 python version.py next 12 python version.py next
13 + git commit -a -m "version $$(var VERSION)"
14 + git tag -a version-$$(cat VERSION) -m "version $$(cat VERSION)"
12 15
13 version: 16 version:
14 python version.py check 17 python version.py check
......