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 3c4d9e7 commit 81cccc2Copy full SHA for 81cccc2
infra/scripts/prepare_release_msg.sh
@@ -2,14 +2,12 @@
2
#
3
# Generate current release message based on active develop branch name
4
5
-set -xv
6
-
7
-CURRENTVERSION=$(cat $(dirname $0)/../../docs/VERSION.md)
+CURRENTVERSION=$(git tag | sort -r | tr '\n' ' ' | cut -d" " -f1)
+#$(cat $(dirname $0)/../../docs/VERSION.md)
8
LATESTVERSION=$(git tag | sort -r | tr '\n' ' ' | cut -d" " -f2)
9
10
-git log
11
GITLOG=$(git log "...$LATESTVERSION" --oneline)
12
-set +xv
+
13
echo "$CURRENTVERSION - [Summary]"
14
echo ""
15
echo "[Description]"
0 commit comments