Rust library to generate static websites
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(release): bump versions and changelogs (#60)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
246e4e38 c2088cfb

+17 -10
-5
.sampo/changesets/steadfast-guardian-ilmatar.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Revert Tailwind hashing change, need a different solution. In the meantime, it is possible for stale content to appear with Tailwind in select conditions.
+2 -2
Cargo.lock
··· 2443 2443 2444 2444 [[package]] 2445 2445 name = "maudit" 2446 - version = "0.6.3" 2446 + version = "0.6.4" 2447 2447 dependencies = [ 2448 2448 "base64", 2449 2449 "brk_rolldown", ··· 2912 2912 2913 2913 [[package]] 2914 2914 name = "oubli" 2915 - version = "0.1.6" 2915 + version = "0.1.7" 2916 2916 dependencies = [ 2917 2917 "maud", 2918 2918 "maudit",
+6
crates/maudit/CHANGELOG.md
··· 1 1 # maudit 2 2 3 + ## 0.6.4 — 2025-10-22 4 + 5 + ### Patch changes 6 + 7 + - [5e9fc15](https://github.com/bruits/maudit/commit/5e9fc15fc1fa7a8f20f3ad261904235debf6d3db) Revert Tailwind hashing change, need a different solution. In the meantime, it is possible for stale content to appear with Tailwind in select conditions. — Thanks @Princesseuh! 8 + 3 9 ## 0.6.3 — 2025-10-21 4 10 5 11 ### Patch changes
+1 -1
crates/maudit/Cargo.toml
··· 4 4 documentation = "https://docs.rs/maudit" 5 5 homepage = "https://maudit.org" 6 6 repository = "https://github.com/bruits/maudit" 7 - version = "0.6.3" 7 + version = "0.6.4" 8 8 license = "MIT" 9 9 edition = "2024" 10 10 rust-version = "1.89.0"
+6
crates/oubli/CHANGELOG.md
··· 1 1 # oubli 2 2 3 + ## 0.1.7 — 2025-10-22 4 + 5 + ### Patch changes 6 + 7 + - Updated dependencies: maudit (Cargo)@0.6.4 8 + 3 9 ## 0.1.6 — 2025-10-21 4 10 5 11 ### Patch changes
+2 -2
crates/oubli/Cargo.toml
··· 1 1 [package] 2 2 name = "oubli" 3 3 description = "Library for generating documentation websites with Maudit." 4 - version = "0.1.6" 4 + version = "0.1.7" 5 5 license = "MIT" 6 6 edition = "2024" 7 7 8 8 [dependencies] 9 - maudit = { path = "../maudit", version = "0.6.3" } 9 + maudit = { path = "../maudit", version = "0.6.4" } 10 10 maud = { workspace = true } 11 11 serde = { workspace = true }