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

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
f6e36895 c132d511

+25 -36
-5
.sampo/changesets/ardent-seer-tapio.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Refactored syntax highlighting into a `highlight_code` function that can be used independently of Markdown rendering
-5
.sampo/changesets/bold-knight-aino.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Add a new `base_url` setting and `canonical_url()` method on PageContext to make it easier to build absolute URLs inside pages
-5
.sampo/changesets/fearless-warden-tuoni.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Fixed escaped shortcodes (i.e. `\{{ shortcode }}`) not rendering correctly
-5
.sampo/changesets/pompous-witch-marjatta.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Assets' `url` method now always return `String` instead of `Option<String>`
-5
.sampo/changesets/stern-runesmith-aurelien.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Update Rolldown version
-5
.sampo/changesets/sullen-witch-ahti.md
··· 1 - --- 2 - maudit: patch 3 - --- 4 - 5 - Improve performance when building many pages, especially when the pages are lightweight
+2 -2
Cargo.lock
··· 2455 2455 2456 2456 [[package]] 2457 2457 name = "maudit" 2458 - version = "0.6.0" 2458 + version = "0.6.1" 2459 2459 dependencies = [ 2460 2460 "base64", 2461 2461 "brk_rolldown", ··· 2920 2920 2921 2921 [[package]] 2922 2922 name = "oubli" 2923 - version = "0.1.3" 2923 + version = "0.1.4" 2924 2924 dependencies = [ 2925 2925 "maud", 2926 2926 "maudit",
+12
crates/maudit/CHANGELOG.md
··· 1 1 # maudit 2 2 3 + ## 0.6.1 4 + 5 + ### Patch changes 6 + 7 + - [c132d51](https://github.com/bruits/maudit/commit/c132d511d0038138a8bbc9b2122602a9154fa298) Assets' `url` method now always return `String` instead of `Option<String>` — Thanks @Princesseuh! 8 + - [0113efe](https://github.com/bruits/maudit/commit/0113efe432936c4f4fd874e5ea0714cd3919974d) Add a new `base_url` setting and `canonical_url()` method on PageContext to make it easier to build absolute URLs inside pages — Thanks @Princesseuh! 9 + - [c132d51](https://github.com/bruits/maudit/commit/c132d511d0038138a8bbc9b2122602a9154fa298) Fixed escaped shortcodes (i.e. `\{{ shortcode }}`) not rendering correctly — Thanks @Princesseuh! 10 + - [c132d51](https://github.com/bruits/maudit/commit/c132d511d0038138a8bbc9b2122602a9154fa298) Refactored syntax highlighting into a `highlight_code` function that can be used independently of Markdown rendering — Thanks @Princesseuh! 11 + - [c132d51](https://github.com/bruits/maudit/commit/c132d511d0038138a8bbc9b2122602a9154fa298) Improve performance when building many pages, especially when the pages are lightweight — Thanks @Princesseuh! 12 + - [c132d51](https://github.com/bruits/maudit/commit/c132d511d0038138a8bbc9b2122602a9154fa298) Update Rolldown version — Thanks @Princesseuh! 13 + 14 + 3 15 ## 0.6.0 4 16 5 17 ### 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.6.0" 7 + version = "0.6.1" 8 8 license = "MIT" 9 9 edition = "2024" 10 10 ··· 45 45 thiserror = "2.0.9" 46 46 oxc_sourcemap = "4.1.0" 47 47 rayon = "1.11.0" 48 - xxhash-rust = "0.8.15" 48 + xxhash-rust = "0.8.15"
+7
crates/oubli/CHANGELOG.md
··· 1 1 # oubli 2 2 3 + ## 0.1.4 4 + 5 + ### Patch changes 6 + 7 + - Updated dependencies: maudit@0.6.1 8 + 9 + 3 10 ## 0.1.3 4 11 5 12 ### 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.3" 4 + version = "0.1.4" 5 5 license = "MIT" 6 6 edition = "2021" 7 7 8 8 [dependencies] 9 - maudit = { path = "../maudit", version = "0.6.0" } 9 + maudit = { path = "../maudit", version = "0.6.1" } 10 10 maud = { workspace = true } 11 11 serde = { workspace = true }