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

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
e3a555f8 5a8a7de1

+31 -18
-6
.sampo/changesets/doughty-forgemaster-ahti.md
··· 1 - --- 2 - cargo/maudit: patch 3 - cargo/maudit-macros: minor 4 - --- 5 - 6 - Fixes wrong version of maudit-macros being used
+7 -7
Cargo.lock
··· 2551 2551 2552 2552 [[package]] 2553 2553 name = "maudit" 2554 - version = "0.7.0" 2554 + version = "0.8.0" 2555 2555 dependencies = [ 2556 2556 "base64", 2557 2557 "brk_rolldown", ··· 2686 2686 2687 2687 [[package]] 2688 2688 name = "maudit-macros" 2689 - version = "0.5.0" 2689 + version = "0.6.0" 2690 2690 dependencies = [ 2691 2691 "quote", 2692 2692 "syn", ··· 3017 3017 3018 3018 [[package]] 3019 3019 name = "oubli" 3020 - version = "0.1.12" 3020 + version = "0.1.13" 3021 3021 dependencies = [ 3022 3022 "maud", 3023 3023 "maudit", ··· 4703 4703 4704 4704 [[package]] 4705 4705 name = "syn" 4706 - version = "2.0.112" 4706 + version = "2.0.113" 4707 4707 source = "registry+https://github.com/rust-lang/crates.io-index" 4708 - checksum = "21f182278bf2d2bcb3c88b1b08a37df029d71ce3d3ae26168e3c653b213b99d4" 4708 + checksum = "678faa00651c9eb72dd2020cbdf275d92eccb2400d568e419efdd64838145cb4" 4709 4709 dependencies = [ 4710 4710 "proc-macro2", 4711 4711 "quote", ··· 6049 6049 6050 6050 [[package]] 6051 6051 name = "zmij" 6052 - version = "1.0.9" 6052 + version = "1.0.10" 6053 6053 source = "registry+https://github.com/rust-lang/crates.io-index" 6054 - checksum = "4ee2a72b10d087f75fb2e1c2c7343e308fe6970527c22a41caf8372e165ff5c1" 6054 + checksum = "30e0d8dffbae3d840f64bda38e28391faef673a7b5a6017840f2a106c8145868" 6055 6055 6056 6056 [[package]] 6057 6057 name = "zopfli"
+6
crates/maudit-macros/CHANGELOG.md
··· 1 1 # maudit-macros 2 2 3 + ## 0.6.0 — 2026-01-04 4 + 5 + ### Minor changes 6 + 7 + - [5a8a7de](https://github.com/bruits/maudit/commit/5a8a7de194de981dfb733d87cc5eb2d92b26deac) Fixes wrong version of maudit-macros being used — Thanks @Princesseuh! 8 + 3 9 ## 0.5.0 4 10 5 11 ### Minor changes
+1 -1
crates/maudit-macros/Cargo.toml
··· 2 2 name = "maudit-macros" 3 3 description = "Procedural macros for the maudit crate" 4 4 license = "MIT" 5 - version = "0.5.0" 5 + version = "0.6.0" 6 6 edition = "2024" 7 7 8 8 [lib]
+7
crates/maudit/CHANGELOG.md
··· 1 1 # maudit 2 2 3 + ## 0.8.0 — 2026-01-04 4 + 5 + ### Patch changes 6 + 7 + - [5a8a7de](https://github.com/bruits/maudit/commit/5a8a7de194de981dfb733d87cc5eb2d92b26deac) Fixes wrong version of maudit-macros being used — Thanks @Princesseuh! 8 + - Updated dependencies: maudit-macros (Cargo)@0.6.0 9 + 3 10 ## 0.7.0 — 2026-01-03 4 11 5 12 ### Minor 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.7.0" 7 + version = "0.8.0" 8 8 license = "MIT" 9 9 edition = "2024" 10 10 rust-version = "1.89.0" ··· 37 37 thumbhash = "0.1.0" 38 38 base64 = "0.22.1" 39 39 40 - maudit-macros = { path = "../maudit-macros", version = "0.5.0" } 40 + maudit-macros = { path = "../maudit-macros", version = "0.6.0" } 41 41 log = { version = "0.4", features = ["kv"] } 42 42 env_logger = "0.11.5" 43 43 chrono = "0.4.39"
+6
crates/oubli/CHANGELOG.md
··· 1 1 # oubli 2 2 3 + ## 0.1.13 — 2026-01-04 4 + 5 + ### Patch changes 6 + 7 + - Updated dependencies: maudit (Cargo)@0.8.0 8 + 3 9 ## 0.1.12 — 2026-01-03 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.12" 4 + version = "0.1.13" 5 5 license = "MIT" 6 6 edition = "2024" 7 7 8 8 [dependencies] 9 - maudit = { path = "../maudit", version = "0.7.0" } 9 + maudit = { path = "../maudit", version = "0.8.0" } 10 10 maud = { workspace = true } 11 11 serde = { workspace = true }