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 (#71)

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
d6c9f5d6 1ce6701f

+22 -27
-5
.sampo/changesets/cantankerous-duchess-ahti.md
··· 1 - --- 2 - cargo/maudit: patch 3 - --- 4 - 5 - Fixes logging of assets during build sometimes showing inconsistent paths
-5
.sampo/changesets/doughty-iceseeker-vainamoinen.md
··· 1 - --- 2 - cargo/maudit: patch 3 - --- 4 - 5 - Fixes Tailwind errors from stalling the build infinitely instead of erroring out
-5
.sampo/changesets/valiant-lady-ilmarinen.md
··· 1 - --- 2 - cargo/maudit: patch 3 - --- 4 - 5 - Assets-related methods now all return Result, returning errors whenever files cannot be read or some other IO issue occurs. This makes it slightly more cumbersome to use, of course, however it makes it much easier to handle errors and return better error messages whenever something goes wrong.
-5
.sampo/changesets/venerable-lord-goulven.md
··· 1 - --- 2 - cargo/maudit: patch 3 - --- 4 - 5 - Normalize the urls returned by `url()` to always properly reflect what the final path would look like
+4 -4
Cargo.lock
··· 2455 2455 2456 2456 [[package]] 2457 2457 name = "maudit" 2458 - version = "0.6.5" 2458 + version = "0.6.6" 2459 2459 dependencies = [ 2460 2460 "base64", 2461 2461 "brk_rolldown", ··· 2903 2903 2904 2904 [[package]] 2905 2905 name = "oubli" 2906 - version = "0.1.8" 2906 + version = "0.1.9" 2907 2907 dependencies = [ 2908 2908 "maud", 2909 2909 "maudit", ··· 5187 5187 5188 5188 [[package]] 5189 5189 name = "uuid" 5190 - version = "1.18.1" 5190 + version = "1.19.0" 5191 5191 source = "registry+https://github.com/rust-lang/crates.io-index" 5192 - checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" 5192 + checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" 5193 5193 dependencies = [ 5194 5194 "getrandom 0.3.4", 5195 5195 "js-sys",
+9
crates/maudit/CHANGELOG.md
··· 1 1 # maudit 2 2 3 + ## 0.6.6 — 2025-12-02 4 + 5 + ### Patch changes 6 + 7 + - [1ce6701](https://github.com/bruits/maudit/commit/1ce6701f059a1a0ac6e62b4f0eadae2cfa26b4fe) Fixes Tailwind errors from stalling the build infinitely instead of erroring out — Thanks @Princesseuh! 8 + - [696f653](https://github.com/bruits/maudit/commit/696f653a5f87d3271149b10d5022b49b56257653) Fixes logging of assets during build sometimes showing inconsistent paths — Thanks @Princesseuh! 9 + - [696f653](https://github.com/bruits/maudit/commit/696f653a5f87d3271149b10d5022b49b56257653) Assets-related methods now all return Result, returning errors whenever files cannot be read or some other IO issue occurs. This makes it slightly more cumbersome to use, of course, however it makes it much easier to handle errors and return better error messages whenever something goes wrong. — Thanks @Princesseuh! 10 + - [492953d](https://github.com/bruits/maudit/commit/492953d638939f86f3c933a9ed0febe4950f348a) Normalize the urls returned by `url()` to always properly reflect what the final path would look like — Thanks @Princesseuh! 11 + 3 12 ## 0.6.5 — 2025-11-13 4 13 5 14 ### 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.5" 7 + version = "0.6.6" 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.9 — 2025-12-02 4 + 5 + ### Patch changes 6 + 7 + - Updated dependencies: maudit (Cargo)@0.6.6 8 + 3 9 ## 0.1.8 — 2025-11-13 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.8" 4 + version = "0.1.9" 5 5 license = "MIT" 6 6 edition = "2024" 7 7 8 8 [dependencies] 9 - maudit = { path = "../maudit", version = "0.6.5" } 9 + maudit = { path = "../maudit", version = "0.6.6" } 10 10 maud = { workspace = true } 11 11 serde = { workspace = true }