Commit
Message
Changed Files (4)
-
modified CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md index ea58fab..dc3bafd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ -## [unreleased] +## [0.9.0] - 2026-06-20 + +### 🚀 Features + +- *(git_ui)* Configurable prefix, default to site root ### ⚙️ Miscellaneous Tasks - Add cargo-edit to mise tools, create release script, mise plugin +- Release v0.9.0 ## [0.8.0] - 2026-06-17 ### 🚀 Features -
modified Cargo.lock
diff --git a/Cargo.lock b/Cargo.lock index 44eeaef..d679941 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "abbaye" -version = "0.8.1" +version = "0.9.0" dependencies = [ "chrono", "clap", -
modified Cargo.toml
diff --git a/Cargo.toml b/Cargo.toml index 860f07f..257fbe6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "abbaye" authors = ["Ololduck <ololduck@vit.am>"] -version = "0.8.1" +version = "0.9.0" edition = "2024" rust-version = "1.85.1" description = "A release page generator for software projects" -
modified abbaye.schema.json
diff --git a/abbaye.schema.json b/abbaye.schema.json index 02e1808..eb87bd9 100644 --- a/abbaye.schema.json +++ b/abbaye.schema.json @@ -297,6 +297,11 @@ "items": { "type": "string" } + }, + "use_cross": { + "description": "Use `cross` instead of `cargo` for the build invocation.\n\nWhen `true`, the builder runs `cross build --release` instead of\n`cargo build --release`. This is useful when the host does not have\nnative cross-compilation toolchains installed — `cross` handles\ntoolchain provisioning via Docker or Podman automatically.\n\nOnly affects the `cargo build` command name; all other flags\n(`--target`, `--manifest-path`, `--target-dir`,\n`--message-format=json`) and artifact discovery work identically.", + "type": "boolean", + "default": false } } },