Skip to content

Commit b95b735

Browse files
committed
multiboot2: fix wording
1 parent 9c3d095 commit b95b735

File tree

6 files changed

+16
-12
lines changed

6 files changed

+16
-12
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.

integration-test/bins/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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ unstable = []
4444
derive_more.workspace = true
4545
log.workspace = true
4646
ptr_meta.workspace = true
47-
multiboot2 = { version = "0.22.0", default-features = false }
47+
multiboot2 = { version = "0.22.1", default-features = false }
4848
multiboot2-common = "0.1.1"
4949

5050
[package.metadata.docs.rs]

multiboot2/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "multiboot2"
33
description = """
4-
Convenient and safe parsing of Multiboot2 Information Structures (MBI) and its
5-
corresponding tags. Usable in `no_std` environments, such as a kernel. An
6-
optional builder feature also allows the construction of the corresponding
7-
structures.
4+
Convenient and safe parsing of Multiboot2 Boot Information (MBI)
5+
structures and the contained information tags. Usable in `no_std` environments,
6+
such as a kernel. An optional builder feature also allows the construction of
7+
the corresponding structures.
88
"""
9-
version = "0.22.0"
9+
version = "0.22.1"
1010
authors = [
1111
"Philipp Oppermann <[email protected]>",
1212
"Calvin Lee <[email protected]>",

multiboot2/Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG for crate `multiboot2`
22

3+
## v0.22.1 (2024-08-20)
4+
5+
Minor documentation fixes.
6+
37
## v0.22.0 (2024-08-20)
48

59
This release contains another major refactoring of the internals, guaranteeing

multiboot2/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
[![crates.io](https://img.shields.io/crates/v/multiboot2.svg)](https://crates.io/crates/multiboot2)
44
[![docs](https://docs.rs/multiboot2/badge.svg)](https://docs.rs/multiboot2/)
55

6-
Convenient and safe parsing of Multiboot2 Information Structures (MBI) and its
7-
corresponding tags. Usable in `no_std` environments, such as a kernel. An
8-
optional builder feature also allows the construction of the corresponding
9-
structures.
6+
Convenient and safe parsing of Multiboot2 Boot Information (MBI)
7+
structures and the contained information tags. Usable in `no_std` environments,
8+
such as a kernel. An optional builder feature also allows the construction of
9+
the corresponding structures.
1010

1111
It follows the Multiboot 2.0 specification
1212
at https://www.gnu.org/software/grub/manual/multiboot2/multiboot.html and the

0 commit comments

Comments
 (0)