Skip to content

Commit 557a681

Browse files
committed
multiboot2-header: prepare release 0.3.1
1 parent 5962548 commit 557a681

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
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-header/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
Library with type definitions and parsing functions for Multiboot2 headers.
55
This library is `no_std` and can be used in bootloaders.
66
"""
7-
version = "0.3.0"
7+
version = "0.3.1"
88
authors = [
99
"Philipp Schuster <[email protected]>"
1010
]
@@ -48,3 +48,6 @@ derive_more.workspace = true
4848

4949
# used for MBI tags
5050
multiboot2 = "0.16.0"
51+
52+
[package.metadata.docs.rs]
53+
all-features = true

multiboot2-header/src/header.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub const MAGIC: u32 = 0xe85250d6;
1616
/// by all tags (see [`crate::tags::HeaderTagType`]).
1717
/// Use this if you get a pointer to the header and just want
1818
/// to parse it. If you want to construct the type by yourself,
19-
/// please look at [`crate::builder::HeaderBuilder`]..
19+
/// please look at `HeaderBuilder` (requires the `builder` feature).
2020
#[derive(Debug)]
2121
#[repr(transparent)]
2222
pub struct Multiboot2Header<'a>(&'a Multiboot2BasicHeader);

multiboot2/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,6 @@ log.workspace = true
4747

4848
uefi-raw = { version = "0.3", default-features = false }
4949
ptr_meta = { version = "0.2", default-features = false }
50+
51+
[package.metadata.docs.rs]
52+
all-features = true

0 commit comments

Comments
 (0)