passepartout-apple/scripts/start-new-version.sh

13 lines
322 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2022-10-31 07:56:46 +00:00
VERSION_NEXT=$1
if [[ -z $VERSION_NEXT ]]; then
echo "New version number required"
2021-09-29 13:09:15 +00:00
exit 1
fi
CHANGELOG_GLOB="CHANGELOG.md"
ci/set-version.sh $VERSION_NEXT
2021-09-29 13:09:15 +00:00
sed -i '' -E "s/(^and this project adheres.*$)/\1\n\n## Unreleased/" $CHANGELOG_GLOB
git add *.plist $CHANGELOG_GLOB
git commit -m "Bump version"