Commit browse files
Message
Changed Files (6)
-
modified CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md index f64ddd5..6eabaef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ -## [unreleased] +## [0.5.1] - 2026-06-02 + +### 🚀 Features + +- Add /latest/ link to "latest" badge on version listing page ### 🐛 Bug Fixes - Use correct URL for og:image property in template + +### ⚙️ Miscellaneous Tasks + +- Add automatic http serving of `public` dir when contributing. ## [0.5.0] - 2026-06-02 ### 🚀 Features -
modified Cargo.lock
diff --git a/Cargo.lock b/Cargo.lock index 4ab1cdd..36abd60 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "abbaye" -version = "0.5.0" +version = "0.5.1" dependencies = [ "chrono", "clap", -
modified Cargo.toml
diff --git a/Cargo.toml b/Cargo.toml index 06aa9ce..ddf5f40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abbaye" -version = "0.5.0" +version = "0.5.1" edition = "2024" rust-version = "1.85.1" description = "A release page generator for software projects" -
modified abbaye.toml
diff --git a/abbaye.toml b/abbaye.toml index 316fa77..7532457 100644 --- a/abbaye.toml +++ b/abbaye.toml @@ -2,12 +2,12 @@ [site] name = "Abbaye" -base_url = "https://vit.am/~ololduck/abbaye/" +base_url = "https://vit.am/~ololduck/abbaye" repo_url = "https://git.sr.ht/~ololduck/abbaye" fediverse_creator = "@ololduck@vit.am" [site.opengraph] -image = "/latest/logo-wordmark.svg" +image = "latest/logo-wordmark.svg" image_alt = "Abbaye logo" [version_extractor] -
modified mise.toml
diff --git a/mise.toml b/mise.toml index 99d358c..5329082 100644 --- a/mise.toml +++ b/mise.toml @@ -116,6 +116,12 @@ description = "builds the release website" run = ["cargo run --release --bin abbaye -- build"] outputs = ["public/"] +[tasks.abbaye-dev] +description = "starts the development server" +run = [ + "watchexec -w src -w abbaye.toml -w Cargo.lock -r 'mise run abbaye && python -m http.server 4000 --directory public'" +] + [tasks.deploy-docs] description = "deploys documentation to https://vit.am/~ololduck/abbaye" depends = ["abbaye"] -
added pitchfork.toml
diff --git a/pitchfork.toml b/pitchfork.toml new file mode 100644 index 0000000..f075989 --- /dev/null +++ b/pitchfork.toml @@ -0,0 +1,5 @@ +[daemons.docserver] +run = "mise run abbaye-dev" +mise = true +auto = ["start", "stop"] +ready_http = "http://localhost:4000/"