This commit is contained in:
ed 2021-05-02 09:18:19 +02:00
parent 50661d941b
commit 0754b553dd
2 changed files with 3 additions and 3 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (0, 10, 15)
VERSION = (0, 10, 16)
CODENAME = "zip it"
BUILD_DT = (2021, 4, 24)
BUILD_DT = (2021, 5, 2)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -117,7 +117,7 @@ cd sfx
ver=
git describe --tags >/dev/null 2>/dev/null && {
git_ver="$(git describe --tags)"; # v0.5.5-2-gb164aa0
ver="$(printf '%s\n' "$git_ver" | sed -r 's/^v//; s/-g?/./g')";
ver="$(printf '%s\n' "$git_ver" | sed -r 's/^v//')";
t_ver=
printf '%s\n' "$git_ver" | grep -qE '^v[0-9\.]+$' && {