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.
2 parents 51933f8 + 4aaf738 commit c45b1faCopy full SHA for c45b1fa
Makefile
@@ -8,6 +8,8 @@ tag:
8
@echo "Tagging v$(VERSION)..."
9
git tag v$(VERSION)
10
git push --tags
11
+ # Always create a github "release" right after tagging so it appears on zenodo
12
+ curl -H "Authorization: token `cat $(HOME)/.github-access-token`" -d '{"tag_name": "$(VERSION)"}' https://api.github.com/repos/nschloe/meshio/releases
13
14
upload: setup.py
15
# Make sure we're on the master branch
meshio/__about__.py
@@ -1,4 +1,4 @@
1
-__version__ = "3.2.10"
+__version__ = "3.2.11"
2
__author__ = "Nico Schlömer"
3
__author_email__ = "[email protected]"
4
__copyright__ = "Copyright (c) 2015-2019 {} <{}>".format(__author__, __author_email__)
0 commit comments