Commit browse files
Message
Changed Files (6)
-
modified CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md index f01726c..f2ad0aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## [unreleased] +## [0.7.1] - 2026-06-16 ### 🚀 Features @@ -16,6 +16,7 @@ ### ⚙️ Miscellaneous Tasks - Prepare for next release +- Release v0.7.1 ## [0.7.0] - 2026-06-08 ### 🚀 Features -
modified Cargo.lock
diff --git a/Cargo.lock b/Cargo.lock index 6e9bbc2..b4c644d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "abbaye" -version = "0.7.0" +version = "0.7.1" dependencies = [ "chrono", "clap", -
modified Cargo.toml
diff --git a/Cargo.toml b/Cargo.toml index c88b1b2..5d20c8a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "abbaye" authors = ["Ololduck <ololduck@vit.am>"] -version = "0.7.0" +version = "0.7.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 50875eb..6416cc2 100644 --- a/abbaye.schema.json +++ b/abbaye.schema.json @@ -145,7 +145,7 @@ } }, "id": { - "description": "Optional identifier for this builder. Other builders reference this\nstring in their `depends_on` list.", + "description": "Optional identifier for this builder. Other builders reference this\nstring in their `depends_on` list.", "type": [ "string", "null" @@ -338,6 +338,22 @@ "type": "string", "default": "main" }, + "exclude": { + "description": "Glob patterns matched against a ref's short name (e.g. `\"main\"`,\n`\"feature/*\"`, `\"v1.0.0\"`), using [`globset`](https://docs.rs/globset)\nsyntax. Any branch or tag matching one of these patterns is left out\nof the generated UI. Defaults to empty (nothing excluded).", + "type": "array", + "default": [], + "items": { + "type": "string" + } + }, + "include": { + "description": "Glob patterns (same syntax as `exclude`). When non-empty, acts as an\nallowlist: only refs matching at least one `include` pattern are\nconsidered at all (and are then still subject to `exclude`). When\nempty (the default), every ref is a candidate.", + "type": "array", + "default": [], + "items": { + "type": "string" + } + }, "max_commits": { "description": "Maximum number of commits to show in the log page. Defaults to 200.", "type": "integer", -
modified abbaye.toml
diff --git a/abbaye.toml b/abbaye.toml index 810250d..2c9976a 100644 --- a/abbaye.toml +++ b/abbaye.toml @@ -21,11 +21,11 @@ tag_prefix = "v" [changelog] -[[builders]] # builds the project using cargo build --release +[[builders]] # builds the project using cargo build --release type = "cargo" targets = ["x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl"] -[[builders]] # generates documentation using cargo doc +[[builders]] # generates documentation using cargo doc type = "cargo_doc" no_deps = true @@ -40,7 +40,7 @@ outputs = ["target/abbaye.schema.json"] [[builders]] id = "archive source" -type = "archive" # creates a compressed tarball of the source code (can be of anything, really) +type = "archive" # creates a compressed tarball of the source code (can be of anything, really) output = "target/abbaye-source.tar.gz" [[builders]] @@ -48,6 +48,6 @@ id = "AUR package" type = "script" script = [ "cargo aur", - "sed -i \"s%source=.*$%source=(\"https://vit.am/~ololduck/abbaye/abbaye-$pkgver-x86-64.tar.gz\")%\" target/cargo-aur/PKGBUILD" + "sed -i \"s%source=.*$%source=(\"https://vit.am/~ololduck/abbaye/abbaye-$pkgver-x86-64.tar.gz\")%\" target/cargo-aur/PKGBUILD", ] outputs = ["target/cargo-aur/abbaye-*-x86_64.tar.gz"] -
modified codebook.toml
diff --git a/codebook.toml b/codebook.toml index 4d4625b..6d3a948 100644 --- a/codebook.toml +++ b/codebook.toml @@ -1,4 +1 @@ -words = [ - "Tera", - "abbaye", -] +words = ["Tera", "abbaye"]