We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2b57e4 commit 937051dCopy full SHA for 937051d
Makefile
@@ -38,15 +38,17 @@ release: ## Release new version
38
sed -i '' "s/, 'dev'//" $(VERSION_FILE)
39
git commit -a -m "release $(VERSION)"
40
41
+ # Tag it
42
+ git tag v$(VERSION)
43
+
44
# Bump version for development
45
$(eval NEXT_VERSION := $(shell echo $(VERSION) | awk -F. '{print $$1"."($$2+1)".0"}'))
46
$(eval VERSION_CODE := $(shell echo $(NEXT_VERSION) | sed 's/\./, /g'))
47
sed -i '' -E "s/[0-9]+, [0-9]+, [0-9]+/$(VERSION_CODE), 'dev'/" $(VERSION_FILE)
48
git commit -a -m "start $(NEXT_VERSION)"
49
git push origin develop
50
- # Tag it, push the tag, release the package to pypi
- git tag v$(VERSION)
51
+ # Push the tag, release the package to pypi
52
git push --tags
53
54
doc:
0 commit comments