Skip to content

Commit db5168f

Browse files
committed
chore: prepare multiboot2 v0.24.1
1 parent 5df765f commit db5168f

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

multiboot2/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22

33
## Unreleased
44

5-
- Small code improvements
5+
## v0.24.1 (2025-11-21)
66

7+
- Fix typo
8+
- Small code improvements
79

810
## v0.24.0 (2025-06-01)
911

multiboot2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ structures and the contained information tags. Usable in `no_std` environments,
66
such as a kernel. An optional builder feature also allows the construction of
77
the corresponding structures.
88
"""
9-
version = "0.24.0"
9+
version = "0.24.1"
1010
authors = [
1111
"Philipp Oppermann <dev@phil-opp.com>",
1212
"Calvin Lee <cyrus296@gmail.com>",

multiboot2/src/builder.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ use alloc::boxed::Box;
1313
use alloc::vec::Vec;
1414
use multiboot2_common::{DynSizedStructure, MaybeDynSized, new_boxed};
1515

16-
/// Builder for a Multiboot2 header information.
17-
// #[derive(Debug)]
16+
/// Builder for a Multiboot2 boot information (MBI.
1817
#[derive(Debug)]
1918
pub struct Builder {
2019
cmdline: Option<Box<CommandLineTag>>,

0 commit comments

Comments
 (0)