21
0
Fork 0
This commit is contained in:
Julian Graf 2023-07-19 11:26:06 +02:00
parent caa69c3629
commit 5273ff7600
2 changed files with 10 additions and 4 deletions

View File

@ -38,11 +38,17 @@ printf "package goext\n\nconst GoextVersion = \"%s\"\n\nconst GoextVersionTimest
git add --verbose .
echo "Insert option commit message:" -n
echo -n "Insert option commit message: "
read commitMessage
msg="v${next_ver} ${commitMessage}"
msg="v${next_ver}"
if [[ "$commitMessage" != "" ]]; then
msg="${msg} ${commitMessage}"
fi
if [ $# -gt 0 ]; then
msg="$1"

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.180"
const GoextVersion = "0.0.181"
const GoextVersionTimestamp = "2023-07-19T11:24:01+0200"
const GoextVersionTimestamp = "2023-07-19T11:26:02+0200"