Skip to content

Commit 67fae99

Browse files
committed
multiboot2: prepare v0.15 release
1 parent 725ea5c commit 67fae99

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
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.14.2"
9+
version = "0.15.0"
1010
authors = [
1111
"Philipp Oppermann <[email protected]>",
1212
"Calvin Lee <[email protected]>",

multiboot2/Changelog.md

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

3-
## 0.15.0 (2023-03-XX)
4-
- MSRV is 1.56.1
3+
## 0.15.0 (2023-03-17)
4+
- **BREAKING** MSRV is 1.56.1
55
- **BREAKING** fixed lifetime issues: `VBEInfoTag` is no longer `&static`
66
- **BREAKING:** `TagType` is now split into `TagTypeId` and `TagType`
77
- `TagTypeId` is a binary-compatible form of a Multiboot2 tag id
88
- `TagType` is a higher-level abstraction for either specified or custom tags
9-
but not ABI compatible.
9+
but not ABI compatible.
10+
- There exists a seamless integration between `u32`, `TagType`, and
11+
`TagTypeId` via `From` and `PartialEq`-implementations.
1012
- fixed another internal lifetime issue
1113
- `BootInformation::framebuffer_tag()` now returns
1214
`Option<Result<FramebufferTag, UnknownFramebufferType>>` instead of
@@ -17,8 +19,6 @@
1719
work with custom tags. An example is given in the function documentation.
1820
(check docs.rs). There is also a small unit test that you can use to learn
1921
from.
20-
- There exists a seamless integration between `u32`, `TagType`, and `TagTypeId`
21-
via `From` and `PartialEq`-implementations.
2222

2323
## 0.14.2 (2023-03-17)
2424
- documentation fixes

0 commit comments

Comments
 (0)