File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
2
2
TARGET = GameOfLife
3
- VERSION = 0.0.13
3
+ VERSION = 0.0.14
4
4
QVERSION = "'${VERSION}'"
5
5
VERSION_FILE = VERSION
6
6
@@ -24,9 +24,10 @@ UPDTINIT = 's/__version__.*=.*/__version__ = ${QVERSION}/'
24
24
UPDTRDME = 's/Version: .*/Version: ${VERSION}/'
25
25
26
26
all :
27
- @echo " make update - updates the version"
27
+ @echo " make update - updates the version VERSION= ${VERSION} "
28
28
@echo " make sdist - creates a source distribution"
29
29
@echo " make bdist - creates a binary distribution"
30
+ @echo " make wheel - creates a wheel distribution"
30
31
@echo " make test - runs unit tests"
31
32
@echo " make upload - uploads bdist_wheel to PYPI=${PYPI} "
32
33
@echo " make clean - removes all derived files and directories"
@@ -38,6 +39,12 @@ update:
38
39
@${SED} -e ${UPDTRDME} ${README} > ${README} .tmp
39
40
@${MV} ${README} .tmp ${README}
40
41
42
+ tag :
43
+ git add ${PKG_INIT}
44
+ git commit -m " Version ${VERSION} "
45
+ git tag ${VERSION}
46
+ git push origin ${VERSION}
47
+
41
48
sdist :
42
49
${PYSETUP} build sdist
43
50
You can’t perform that action at this time.
0 commit comments