Răsfoiți Sursa

multiboot2: fix wording

Philipp Schuster 7 luni în urmă
părinte
comite
b95b735089

+ 1 - 1
Cargo.lock

@@ -27,7 +27,7 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
 
 [[package]]
 name = "multiboot2"
-version = "0.22.0"
+version = "0.22.1"
 dependencies = [
  "bitflags",
  "derive_more",

+ 1 - 1
integration-test/bins/Cargo.lock

@@ -96,7 +96,7 @@ dependencies = [
 
 [[package]]
 name = "multiboot2"
-version = "0.22.0"
+version = "0.22.1"
 dependencies = [
  "bitflags 2.6.0",
  "derive_more",

+ 1 - 1
multiboot2-header/Cargo.toml

@@ -44,7 +44,7 @@ unstable = []
 derive_more.workspace = true
 log.workspace = true
 ptr_meta.workspace = true
-multiboot2 = { version = "0.22.0", default-features = false }
+multiboot2 = { version = "0.22.1", default-features = false }
 multiboot2-common = "0.1.1"
 
 [package.metadata.docs.rs]

+ 5 - 5
multiboot2/Cargo.toml

@@ -1,12 +1,12 @@
 [package]
 name = "multiboot2"
 description = """
-Convenient and safe parsing of Multiboot2 Information Structures (MBI) and its
-corresponding tags. Usable in `no_std` environments, such as a kernel. An
-optional builder feature also allows the construction of the corresponding
-structures.
+Convenient and safe parsing of Multiboot2 Boot Information (MBI)
+structures and the contained information tags. Usable in `no_std` environments,
+such as a kernel. An optional builder feature also allows the construction of
+the corresponding structures.
 """
-version = "0.22.0"
+version = "0.22.1"
 authors = [
     "Philipp Oppermann <dev@phil-opp.com>",
     "Calvin Lee <cyrus296@gmail.com>",

+ 4 - 0
multiboot2/Changelog.md

@@ -1,5 +1,9 @@
 # CHANGELOG for crate `multiboot2`
 
+## v0.22.1 (2024-08-20)
+
+Minor documentation fixes.
+
 ## v0.22.0 (2024-08-20)
 
 This release contains another major refactoring of the internals, guaranteeing

+ 4 - 4
multiboot2/README.md

@@ -3,10 +3,10 @@
 [![crates.io](https://img.shields.io/crates/v/multiboot2.svg)](https://crates.io/crates/multiboot2)
 [![docs](https://docs.rs/multiboot2/badge.svg)](https://docs.rs/multiboot2/)
 
-Convenient and safe parsing of Multiboot2 Information Structures (MBI) and its
-corresponding tags. Usable in `no_std` environments, such as a kernel. An
-optional builder feature also allows the construction of the corresponding
-structures.
+Convenient and safe parsing of Multiboot2 Boot Information (MBI)
+structures and the contained information tags. Usable in `no_std` environments,
+such as a kernel. An optional builder feature also allows the construction of
+the corresponding structures.
 
 It follows the Multiboot 2.0 specification
 at https://www.gnu.org/software/grub/manual/multiboot2/multiboot.html and the