Skip to content

Commit

Permalink
multiboot2: fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Aug 20, 2024
1 parent 9c3d095 commit b95b735
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion integration-test/bins/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion multiboot2-header/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
10 changes: 5 additions & 5 deletions multiboot2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
"Calvin Lee <[email protected]>",
Expand Down
4 changes: 4 additions & 0 deletions multiboot2/Changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions multiboot2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b95b735

Please sign in to comment.