Skip to content

Commit 19c7e8e

Browse files
committed
multiboot2: prepare v0.14.0
1 parent c60f21b commit 19c7e8e

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

multiboot2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the speci
66
including full support for the sections of ELF-64. This library is `no_std` and can be
77
used in a Multiboot2-kernel.
88
"""
9-
version = "0.13.3"
9+
version = "0.14.0"
1010
authors = [
1111
"Philipp Oppermann <[email protected]>",
1212
"Calvin Lee <[email protected]>",

multiboot2/Changelog.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
# CHANGELOG for crate `multiboot2`
22

3-
## 0.13.3 (2022-05-03)
3+
## 0.14.0 (2022-05-xx)
4+
- **BREAKING CHANGES** \
5+
This version includes a few small breaking changes that brings more safety when parsing strings from the
6+
multiboot information structure.
7+
- `BootLoaderNameTag::name` now returns a Result instead of just the value
8+
- `CommandLineTag::command_line` now returns a Result instead of just the value
9+
- `ModuleTag::cmdline` now returns a Result instead of just the value
10+
- `RsdpV1Tag::signature` now returns a Result instead of an Option
11+
- `RsdpV1Tag::oem_id` now returns a Result instead of an Option
12+
- `RsdpV2Tag::signature` now returns a Result instead of an Option
13+
- `RsdpV2Tag::oem_id` now returns a Result instead of an Option
14+
- internal code improvements
15+
16+
17+
## 0.13.3 (2022-06-03)
418
- impl `Send` for `BootInformation`
519

620
## 0.13.2 (2022-05-02)

0 commit comments

Comments
 (0)