Commit
Message
Changed Files (4)
-
modified CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e98607..71f845b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,16 @@ ### 🚀 Features - *(git_ui)* Raw file download and ref-based browse URLs +- Update ref badge links to browse view with cleaner URLs ### 🐛 Bug Fixes - Re-add aarch64 musl target +### 💼 Other + +- Prepare for 0.10.0 release + ### 📚 Documentation - Update mise plugin targets to musl -
modified Cargo.lock
diff --git a/Cargo.lock b/Cargo.lock index 0f6480c..1d5d1ee 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "abbaye" -version = "0.9.1" +version = "0.10.0" dependencies = [ "chrono", "clap", -
modified Cargo.toml
diff --git a/Cargo.toml b/Cargo.toml index 47531e0..964f460 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "abbaye" authors = ["Ololduck <ololduck@vit.am>"] -version = "0.9.1" +version = "0.10.0" edition = "2024" rust-version = "1.85.1" description = "A release page generator for software projects" -
modified scripts/release.sh
diff --git a/scripts/release.sh b/scripts/release.sh index 36d5fe8..ac225d7 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -62,7 +62,12 @@ git add abbaye.schema.json echo "=== Bumping version to $VERSION ===" cargo set-version "$VERSION" git add Cargo.toml Cargo.lock -git commit -m "chore: release v${VERSION}" + +if ! git diff --cached --quiet; then + git commit -m "chore: release v${VERSION}" +else + echo "Warning: No changes detected in Cargo.toml or Cargo.lock. Skipping version commit." +fi # ── Tag (before changelog so git-cliff can find this version) ──────────────