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

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
e194a1e6 9e3eb1e1

+14 -13
-5
.sampo/changesets/heroic-iceseeker-nyyrikki.md
··· 1 - --- 2 - maudit-cli: patch 3 - --- 4 - 5 - Fixes missing HTTP headers on HTML responses
+7 -7
Cargo.lock
··· 1754 1754 source = "registry+https://github.com/rust-lang/crates.io-index" 1755 1755 checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df" 1756 1756 dependencies = [ 1757 - "unicode-width 0.2.1", 1757 + "unicode-width 0.2.2", 1758 1758 ] 1759 1759 1760 1760 [[package]] ··· 2506 2506 2507 2507 [[package]] 2508 2508 name = "maudit-cli" 2509 - version = "0.6.0" 2509 + version = "0.6.1" 2510 2510 dependencies = [ 2511 2511 "axum", 2512 2512 "brk_rolldown", ··· 3047 3047 "textwrap", 3048 3048 "thiserror 2.0.17", 3049 3049 "unicode-segmentation", 3050 - "unicode-width 0.2.1", 3050 + "unicode-width 0.2.2", 3051 3051 ] 3052 3052 3053 3053 [[package]] ··· 4195 4195 source = "registry+https://github.com/rust-lang/crates.io-index" 4196 4196 checksum = "77dff57c9de498bb1eb5b1ce682c2e3a0ae956b266fa0933c3e151b87b078967" 4197 4197 dependencies = [ 4198 - "unicode-width 0.2.1", 4198 + "unicode-width 0.2.2", 4199 4199 "yansi", 4200 4200 ] 4201 4201 ··· 4750 4750 dependencies = [ 4751 4751 "smawk", 4752 4752 "unicode-linebreak", 4753 - "unicode-width 0.2.1", 4753 + "unicode-width 0.2.2", 4754 4754 ] 4755 4755 4756 4756 [[package]] ··· 5222 5222 5223 5223 [[package]] 5224 5224 name = "unicode-width" 5225 - version = "0.2.1" 5225 + version = "0.2.2" 5226 5226 source = "registry+https://github.com/rust-lang/crates.io-index" 5227 - checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" 5227 + checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" 5228 5228 5229 5229 [[package]] 5230 5230 name = "unicode-xid"
+6
crates/maudit-cli/CHANGELOG.md
··· 1 1 # maudit-cli 2 2 3 + ## 0.6.1 — 2025-10-06 4 + 5 + ### Patch changes 6 + 7 + - [9e3eb1e](https://github.com/bruits/maudit/commit/9e3eb1e15eec80377a38721406aae80f6a148f19) Fixes missing HTTP headers on HTML responses — Thanks @Princesseuh! 8 + 3 9 ## 0.6.0 — 2025-10-06 4 10 5 11 ### Minor changes
+1 -1
crates/maudit-cli/Cargo.toml
··· 1 1 [package] 2 2 name = "maudit-cli" 3 3 description = "CLI to operate on maudit projects." 4 - version = "0.6.0" 4 + version = "0.6.1" 5 5 license = "MIT" 6 6 edition = "2024" 7 7