From 826c3c78932391c2f5cee1ed292a70ddf4bbd072 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Thu, 16 May 2024 18:24:45 +0200 Subject: [PATCH] refactor(scripts): don't decorate the changelog with branch info and so on --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 275ed55..fd78d9f 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -4,7 +4,7 @@ NEW_VERSION=$(cat Cargo.toml | rg '^\s*version\s*=\s*"([^"]*)"\s*$' -or '$1') GIT_COMMIT_SHA=$(git rev-parse HEAD) REPO=${PWD##*/} # name of cwd BODY=" -$(git log $(git describe --tags --abbrev=0)..HEAD --pretty="- %s" --oneline --decorate) +$(git log $(git describe --tags --abbrev=0)..HEAD --pretty="- %s" --oneline --no-decorate) " USER=PlexSheep git tag "v$NEW_VERSION" || echo "could not tag"