We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783149e commit 173f0a7Copy full SHA for 173f0a7
2 files changed
stringtie.cpp
@@ -11,7 +11,7 @@
11
#include "proc_mem.h"
12
#endif
13
14
-#define VERSION "1.3.4a"
+#define VERSION "1.3.4b"
15
16
//#define DEBUGPRINT 1
17
tag_git.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash -e
2
+ver=$(fgrep '#define VERSION ' stringtie.cpp)
3
+ver=${ver#*\"}
4
+ver=${ver%%\"*}
5
+git checkout master
6
+git tag -a "v$ver" -m "release $ver"
7
+git push --tags
0 commit comments