From 7c4de5d36b0c4be40008b1f905e1d286c1ee1f01 Mon Sep 17 00:00:00 2001 From: bsorrentino Date: Sat, 10 Aug 2024 12:37:33 +0200 Subject: [PATCH] build: add changelog update shell --- changelog.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 changelog.sh diff --git a/changelog.sh b/changelog.sh new file mode 100755 index 0000000..cf526db --- /dev/null +++ b/changelog.sh @@ -0,0 +1,10 @@ +# prepare the CHANGELOG.md with the current version +git flow hotfix start changeme + +# generate CHANGELOG.md +git-changelog-command-line -of CHANGELOG.md + +git commit -m'docs: update changeme' -a + +# finish the hotfix without create tag +git flow hotfix finish changeme -n