Commit
Message
Changed Files (5)
-
modified CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md index dc3bafd..2be8676 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,22 @@ +## [0.9.1] - 2026-06-20 + +### 🐛 Bug Fixes + +- Restore default git UI prefix to repository + +### ⚙️ Miscellaneous Tasks + +- Release v0.9.1 ## [0.9.0] - 2026-06-20 ### 🚀 Features - *(git_ui)* Configurable prefix, default to site root +### 🐛 Bug Fixes + +- Drop aarch64 target for site build (no cross-compiler on dev) + ### ⚙️ Miscellaneous Tasks - Add cargo-edit to mise tools, create release script, mise plugin -
modified Cargo.lock
diff --git a/Cargo.lock b/Cargo.lock index d679941..0f6480c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "abbaye" -version = "0.9.0" +version = "0.9.1" dependencies = [ "chrono", "clap", -
modified Cargo.toml
diff --git a/Cargo.toml b/Cargo.toml index 257fbe6..47531e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "abbaye" authors = ["Ololduck <ololduck@vit.am>"] -version = "0.9.0" +version = "0.9.1" 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 eb87bd9..4bbd3f8 100644 --- a/abbaye.schema.json +++ b/abbaye.schema.json @@ -388,9 +388,9 @@ "minimum": 0 }, "prefix": { - "description": "Directory prefix for git UI pages relative to the site output root.\nDefaults to `\"\"` (pages generated directly at the site root).\nSet to `\"repository\"` for the legacy layout.", + "description": "Directory prefix for git UI pages relative to the site output root.\nDefaults to `\"repository\"` for backwards compatibility.\nSet to `\"\"` to generate pages directly at the site root.", "type": "string", - "default": "" + "default": "repository" }, "repo_path": { "description": "Path to the git repository to read. Defaults to `.` (the current directory).", -
modified abbaye.toml
diff --git a/abbaye.toml b/abbaye.toml index 700d12c..7c6eb47 100644 --- a/abbaye.toml +++ b/abbaye.toml @@ -144,7 +144,7 @@ comment = "Built for x86_64 and aarch64 Linux (musl)." type = "cargo" # Target triples for cross-compilation (optional, default: [] = host target). -targets = ["x86_64-unknown-linux-musl"] +targets = ["x86_64-unknown-linux-musl", "aarch64-unknown-linux-musl"] # Path to Cargo.toml (optional, default: "./Cargo.toml"). # manifest_path = "Cargo.toml"