chore: bump version to v0.2.0
All checks were successful
Release / build_release (push) Successful in 29s
Rust / build_and_test (push) Successful in 23s

This commit is contained in:
Lukas Wölfer
2026-01-29 21:19:46 +01:00
parent 56176b2659
commit cb99d74b4e
3 changed files with 5 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -147,7 +147,7 @@ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
[[package]]
name = "chkr"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"anyhow",
"argh",

View File

@@ -1,6 +1,6 @@
[package]
name = "chkr"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
[dependencies]

View File

@@ -3,9 +3,10 @@
set -euo pipefail
VERSION="$(git cliff --bumped-version)"
sed -i "s/^version = \".*\"/version = \"${VERSION}\"/" Cargo.toml
VERSION_CLEAN="${VERSION#v}"
sed -i "s/^version = \".*\"/version = \"${VERSION_CLEAN}\"/" Cargo.toml
cargo check
echo Press Y to commit version bump to ${VERSION}
echo Press Y to commit version bump to ${VERSION_CLEAN}
read -r CONFIRM
if [ "${CONFIRM}" != "Y" ]; then
echo Aborting