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

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
ac940505 3758ccfd

+15 -18
-5
.sampo/changesets/bold-iceseeker-tursas.md
··· 1 - --- 2 - maudit-cli: minor 3 - --- 4 - 5 - Improved stability of the watching system
-5
.sampo/changesets/heroic-wolfkin-ahti.md
··· 1 - --- 2 - maudit-cli: minor 3 - --- 4 - 5 - Fixes an issue where installation would fail due to an outdated Rolldown version
+7 -7
Cargo.lock
··· 1587 1587 1588 1588 [[package]] 1589 1589 name = "flate2" 1590 - version = "1.1.2" 1590 + version = "1.1.4" 1591 1591 source = "registry+https://github.com/rust-lang/crates.io-index" 1592 - checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" 1592 + checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9" 1593 1593 dependencies = [ 1594 1594 "crc32fast", 1595 1595 "miniz_oxide", ··· 2506 2506 2507 2507 [[package]] 2508 2508 name = "maudit-cli" 2509 - version = "0.5.1" 2509 + version = "0.6.0" 2510 2510 dependencies = [ 2511 2511 "axum", 2512 2512 "brk_rolldown", ··· 2698 2698 2699 2699 [[package]] 2700 2700 name = "moxcms" 2701 - version = "0.7.5" 2701 + version = "0.7.6" 2702 2702 source = "registry+https://github.com/rust-lang/crates.io-index" 2703 - checksum = "ddd32fa8935aeadb8a8a6b6b351e40225570a37c43de67690383d87ef170cd08" 2703 + checksum = "1cc7d85f3d741164e8972ad355e26ac6e51b20fcae5f911c7da8f2d8bbbb3f33" 2704 2704 dependencies = [ 2705 2705 "num-traits", 2706 2706 "pxfm", ··· 4088 4088 4089 4089 [[package]] 4090 4090 name = "redox_syscall" 4091 - version = "0.5.17" 4091 + version = "0.5.18" 4092 4092 source = "registry+https://github.com/rust-lang/crates.io-index" 4093 - checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" 4093 + checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" 4094 4094 dependencies = [ 4095 4095 "bitflags 2.9.4", 4096 4096 ]
+7
crates/maudit-cli/CHANGELOG.md
··· 1 1 # maudit-cli 2 2 3 + ## 0.6.0 — 2025-10-06 4 + 5 + ### Minor changes 6 + 7 + - [3758ccf](https://github.com/bruits/maudit/commit/3758ccfdcfbc66762d285d9f3bb2f7891b90dfe1) Improved stability of the watching system — Thanks @Princesseuh! 8 + - [3758ccf](https://github.com/bruits/maudit/commit/3758ccfdcfbc66762d285d9f3bb2f7891b90dfe1) Fixes an issue where installation would fail due to an outdated Rolldown version — Thanks @Princesseuh! 9 + 3 10 ## 0.5.1 4 11 5 12 ### Patch 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.5.1" 4 + version = "0.6.0" 5 5 license = "MIT" 6 6 edition = "2024" 7 7