Skip to content

Commit 173f0a7

Browse files
committed
bump version to 1.3.4beta due to more GFF parsing changes
1 parent 783149e commit 173f0a7

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

stringtie.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "proc_mem.h"
1212
#endif
1313

14-
#define VERSION "1.3.4a"
14+
#define VERSION "1.3.4b"
1515

1616
//#define DEBUGPRINT 1
1717

tag_git.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)