Set starting patch number to '1' since increment doesn't work with 0s

This commit is contained in:
Bob Jelica
2024-03-05 13:40:30 +01:00
committed by Phil Jay
parent a6b9cc8234
commit 0483a06d99

View File

@@ -50,7 +50,7 @@ if [[ -z "${current_version:-}" ]] ; then
current_version="0.0.0"
;;
calver)
current_version="$(date '+%Y.%-m.0')"
current_version="$(date '+%Y.%-m.1')"
;;
esac
fi