Commit browse files
Message
Changed Files (4)
-
modified CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cba2de..4632b0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## [unreleased] +## [0.6.0] - 2026-06-04 ### 🚀 Features @@ -7,6 +7,11 @@ - Add Markdown builder and template - *(cli)* Add UsageSpec command with clap_usage - Add self-update command reading from the published releases.atom + +### ⚙️ Miscellaneous Tasks + +- Update config schema, fmt +- Release v0.6.0 ## [0.5.1] - 2026-06-02 ### 🚀 Features -
modified Cargo.lock
diff --git a/Cargo.lock b/Cargo.lock index acd4852..c248d09 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "abbaye" -version = "0.5.1" +version = "0.6.0" dependencies = [ "chrono", "clap", -
modified Cargo.toml
diff --git a/Cargo.toml b/Cargo.toml index 23242b1..52d5a5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abbaye" -version = "0.5.1" +version = "0.6.0" edition = "2024" rust-version = "1.85.1" description = "A release page generator for software projects" -
modified mise.toml
diff --git a/mise.toml b/mise.toml index 9e48ed5..a4edaa2 100644 --- a/mise.toml +++ b/mise.toml @@ -93,7 +93,7 @@ arg "<new_version>" help="New version to release" confirm = "Are you sure you want to release?" description = "release the project" run = [ - 'sed -i "s/^version = .*/version = \\\"${usage_new_version}\\\"/" Cargo.toml', + 'sed -i "/^\[package\]/,/^\[/{s/^version = \".*\"/version = \"${usage_new_version}\"/}" Cargo.toml', 'git commit -am "chore: release v${usage_new_version}"', "mise run generate-changelog && git commit --amend --no-edit -n || echo \"No changelog generated\"", "prek run --all-files",