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 bbc00aa commit f5e4f63Copy full SHA for f5e4f63
OATFWGUI/_version.py
@@ -1 +1 @@
1
-__version__ = '0.1.2'
+__version__ = '1.0.0'
scripts/commit_and_tag_new_version.sh
@@ -0,0 +1,13 @@
+#!/bin/bash
2
+set -e
3
+
4
+version_file='./OATFWGUI/_version.py'
5
+new_version=$(python3 -c "
6
+exec(open('${version_file}').read())
7
+print(__version__, end=None)
8
+")
9
+echo "New version from $version_file is $new_version"
10
+git commit -am "Version $new_version"
11
+git tag "$new_version"
12
+git push
13
+git push origin "$new_version"
0 commit comments