bb64 release v35

This commit is contained in:
Your Name 2025-05-17 08:04:18 +12:00
parent 8f17ecdbdc
commit 3356da8cf7
2 changed files with 4 additions and 3 deletions

View File

@ -17,8 +17,9 @@ if [ ! -f version.h ]; then
exit 1
else
v=$(cat version.h | grep -o 'static const char \*VERSION = "[0-9.]*";' | cut -d'"' -f2)
oldv=$v
v=$((v+1))
echo "Incrementing version from $v to $v" >&2
echo "Incrementing version from $oldv to $v" >&2
echo "static const char *VERSION = \"$v\";" > version.h
fi
TAG="v$v"

View File

@ -1 +1 @@
static const char *VERSION = "34";
static const char *VERSION = "35";