Compare commits

..

2 commits

Author SHA1 Message Date
826c3c7893 refactor(scripts): don't decorate the changelog with branch info and so on
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m21s
2024-05-16 18:24:45 +02:00
2da1887379 chore: bump to v0.3.3
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m19s
2024-05-16 18:22:29 +02:00
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "numf"
version = "0.3.2"
version = "0.3.3"
edition = "2021"
publish = true
authors = ["Christoph J. Scherr <software@cscherr.de>"]

View file

@ -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"