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

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
ec60b20e fc25ac22

+30 -22
-5
.sampo/changesets/jovial-thunderbearer-kullervo.md
··· 1 - --- 2 - cargo/maudit: patch 3 - --- 4 - 5 - Improve hashing performance
+15 -14
Cargo.lock
··· 885 885 886 886 [[package]] 887 887 name = "cargo-platform" 888 - version = "0.3.1" 888 + version = "0.3.2" 889 889 source = "registry+https://github.com/rust-lang/crates.io-index" 890 - checksum = "122ec45a44b270afd1402f351b782c676b173e3c3fb28d86ff7ebfb4d86a4ee4" 890 + checksum = "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082" 891 891 dependencies = [ 892 892 "serde", 893 + "serde_core", 893 894 ] 894 895 895 896 [[package]] ··· 2090 2091 2091 2092 [[package]] 2092 2093 name = "icu_properties" 2093 - version = "2.1.1" 2094 + version = "2.1.2" 2094 2095 source = "registry+https://github.com/rust-lang/crates.io-index" 2095 - checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" 2096 + checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" 2096 2097 dependencies = [ 2097 2098 "icu_collections", 2098 2099 "icu_locale_core", ··· 2104 2105 2105 2106 [[package]] 2106 2107 name = "icu_properties_data" 2107 - version = "2.1.1" 2108 + version = "2.1.2" 2108 2109 source = "registry+https://github.com/rust-lang/crates.io-index" 2109 - checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" 2110 + checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" 2110 2111 2111 2112 [[package]] 2112 2113 name = "icu_provider" ··· 2432 2433 2433 2434 [[package]] 2434 2435 name = "libz-rs-sys" 2435 - version = "0.5.3" 2436 + version = "0.5.4" 2436 2437 source = "registry+https://github.com/rust-lang/crates.io-index" 2437 - checksum = "8b484ba8d4f775eeca644c452a56650e544bf7e617f1d170fe7298122ead5222" 2438 + checksum = "15413ef615ad868d4d65dce091cb233b229419c7c0c4bcaa746c0901c49ff39c" 2438 2439 dependencies = [ 2439 2440 "zlib-rs", 2440 2441 ] ··· 2550 2551 2551 2552 [[package]] 2552 2553 name = "maudit" 2553 - version = "0.6.7" 2554 + version = "0.6.8" 2554 2555 dependencies = [ 2555 2556 "base64", 2556 2557 "brk_rolldown", ··· 3002 3003 3003 3004 [[package]] 3004 3005 name = "oubli" 3005 - version = "0.1.10" 3006 + version = "0.1.11" 3006 3007 dependencies = [ 3007 3008 "maud", 3008 3009 "maudit", ··· 3071 3072 3072 3073 [[package]] 3073 3074 name = "oxc-browserslist" 3074 - version = "2.1.3" 3075 + version = "2.1.4" 3075 3076 source = "registry+https://github.com/rust-lang/crates.io-index" 3076 - checksum = "f978be538ca5e2a64326d24b7991dc658cc8495132833ae387212ab3b8abd70a" 3077 + checksum = "9bd39c45e1d6bd2abfbd4b89cbcaba34bd315cd3cee23aad623fd075acc1ea01" 3077 3078 dependencies = [ 3078 3079 "bincode 2.0.1", 3079 3080 "flate2", ··· 6017 6018 6018 6019 [[package]] 6019 6020 name = "zlib-rs" 6020 - version = "0.5.3" 6021 + version = "0.5.4" 6021 6022 source = "registry+https://github.com/rust-lang/crates.io-index" 6022 - checksum = "36134c44663532e6519d7a6dfdbbe06f6f8192bde8ae9ed076e9b213f0e31df7" 6023 + checksum = "51f936044d677be1a1168fae1d03b583a285a5dd9d8cbf7b24c23aa1fc775235" 6023 6024 6024 6025 [[package]] 6025 6026 name = "zopfli"
+6
crates/maudit/CHANGELOG.md
··· 1 1 # maudit 2 2 3 + ## 0.6.8 — 2025-12-12 4 + 5 + ### Patch changes 6 + 7 + - [fc25ac2](https://github.com/bruits/maudit/commit/fc25ac2257ef7d38ff116b17418401fdb22f273c) Improve hashing performance — Thanks @Princesseuh! 8 + 3 9 ## 0.6.7 — 2025-12-09 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.7" 7 + version = "0.6.8" 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.11 — 2025-12-12 4 + 5 + ### Patch changes 6 + 7 + - Updated dependencies: maudit (Cargo)@0.6.8 8 + 3 9 ## 0.1.10 — 2025-12-09 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.10" 4 + version = "0.1.11" 5 5 license = "MIT" 6 6 edition = "2024" 7 7 8 8 [dependencies] 9 - maudit = { path = "../maudit", version = "0.6.7" } 9 + maudit = { path = "../maudit", version = "0.6.8" } 10 10 maud = { workspace = true } 11 11 serde = { workspace = true }