Rust library to generate static websites
5
fork

Configure Feed

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

Release (#49)

* chore(release): bump versions and changelogs

* fix: update intended version

---------

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

authored by

github-actions[bot]
github-actions[bot]
Princesseuh
and committed by
GitHub
abf7a3d0 30b8cdee

+29 -24
-5
.sampo/changesets/ancient-guardian-tuulikki.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Add a new RenderWithAlt trait for rendering images, enforcing the usage of alt when trying to render to a String
-5
.sampo/changesets/wily-guardian-marjatta.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Updates MSRV to 1.89
+2 -2
Cargo.lock
··· 2455 2455 2456 2456 [[package]] 2457 2457 name = "maudit" 2458 - version = "0.6.1" 2458 + version = "0.6.2" 2459 2459 dependencies = [ 2460 2460 "base64", 2461 2461 "brk_rolldown", ··· 2920 2920 2921 2921 [[package]] 2922 2922 name = "oubli" 2923 - version = "0.1.4" 2923 + version = "0.1.5" 2924 2924 dependencies = [ 2925 2925 "maud", 2926 2926 "maudit",
+8
crates/maudit/CHANGELOG.md
··· 1 1 # maudit 2 2 3 + ## 0.6.2 4 + 5 + ### Patch changes 6 + 7 + - [0cb1738](https://github.com/bruits/maudit/commit/0cb173885de09e93d157308e809e07df7c57e7af) Updates MSRV to 1.89 — Thanks @Princesseuh! 8 + - [36da26d](https://github.com/bruits/maudit/commit/36da26dfe5739b6d7077865289dfbfafea8ad60d) Add a new RenderWithAlt trait for rendering images, enforcing the usage of alt when trying to render to a String — Thanks @Princesseuh! 9 + 10 + 3 11 ## 0.6.1 4 12 5 13 ### Patch changes
+2 -2
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.1" 7 + version = "0.6.2" 8 8 license = "MIT" 9 9 edition = "2024" 10 10 rust-version = "1.89.0" ··· 46 46 thiserror = "2.0.9" 47 47 oxc_sourcemap = "4.1.0" 48 48 rayon = "1.11.0" 49 - xxhash-rust = "0.8.15" 49 + xxhash-rust = "0.8.15"
+7
crates/oubli/CHANGELOG.md
··· 1 1 # oubli 2 2 3 + ## 0.1.5 4 + 5 + ### Patch changes 6 + 7 + - Updated dependencies: maudit@0.6.2 8 + 9 + 3 10 ## 0.1.4 4 11 5 12 ### Patch changes
+3 -3
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.4" 4 + version = "0.1.5" 5 5 license = "MIT" 6 6 edition = "2024" 7 7 8 8 [dependencies] 9 - maudit = { path = "../maudit", version = "0.6.1" } 9 + maudit = { path = "../maudit", version = "0.6.2" } 10 10 maud = { workspace = true } 11 - serde = { workspace = true } 11 + serde = { workspace = true }
+1 -1
examples/basics/Cargo.toml
··· 5 5 publish = false 6 6 7 7 [package.metadata.maudit] 8 - intended_version = "0.6.1" 8 + intended_version = "0.6.2" 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true }
+1 -1
examples/blog/Cargo.toml
··· 5 5 publish = false 6 6 7 7 [package.metadata.maudit] 8 - intended_version = "0.6.1" 8 + intended_version = "0.6.2" 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true }
+1 -1
examples/empty/Cargo.toml
··· 5 5 publish = false 6 6 7 7 [package.metadata.maudit] 8 - intended_version = "0.6.1" 8 + intended_version = "0.6.2" 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true }
+1 -1
examples/image-processing/Cargo.toml
··· 5 5 publish = false 6 6 7 7 [package.metadata.maudit] 8 - intended_version = "0.6.1" 8 + intended_version = "0.6.2" 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true }
+1 -1
examples/kitchen-sink/Cargo.toml
··· 5 5 publish = false 6 6 7 7 [package.metadata.maudit] 8 - intended_version = "0.6.1" 8 + intended_version = "0.6.2" 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true }
+1 -1
examples/library/Cargo.toml
··· 5 5 publish = false 6 6 7 7 [package.metadata.maudit] 8 - intended_version = "0.6.1" 8 + intended_version = "0.6.2" 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true }
+1 -1
examples/markdown-components/Cargo.toml
··· 5 5 publish = false 6 6 7 7 [package.metadata.maudit] 8 - intended_version = "0.6.1" 8 + intended_version = "0.6.2" 9 9 10 10 [dependencies] 11 11 maudit = { workspace = true }