Skip to content

Commit 994ddcd

Browse files
committed
workspace: prepare releases
1 parent 3ce9e31 commit 994ddcd

File tree

9 files changed

+23
-20
lines changed

9 files changed

+23
-20
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ exclude = [
1313
bitflags = "2.6.0"
1414
derive_more = { version = "1.0.0", default-features = false, features = ["display"] }
1515
log = { version = "~0.4", default-features = false }
16-
multiboot2 = { version = "0.22.2", default-features = false }
17-
multiboot2-common = { version = "0.1.2", default-features = false }
16+
multiboot2 = { version = "0.23.0", default-features = false }
17+
multiboot2-common = { version = "0.2.0", default-features = false }
18+
# Warn: 0.3 has multiple very breaking changes
1819
ptr_meta = { version = "~0.2", default-features = false }
1920

2021
# This way, the corresponding crate dependency can be normalley referenced by

integration-test/bins/Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

multiboot2-common/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## v0.2.0 (2024-09-11)
6+
57
- dependency updates
68
- **Breaking:** MSRV is now 1.75
79
- misc metadata fixes

multiboot2-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "multiboot2-common"
33
description = """
44
Common helpers for the `multiboot2` and `multiboot2-header` crates.
55
"""
6-
version = "0.1.2"
6+
version = "0.2.0"
77
authors = [
88
"Philipp Schuster <[email protected]>"
99
]

multiboot2-header/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## v0.6.0 (2024-09-11)
6+
57
- dependency updates
68
- **Breaking:** MSRV is now 1.75
79
- misc metadata fixes

multiboot2-header/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ contained header tags. Usable in no_std environments, such as a
66
bootloader. An optional builder feature also allows the construction of
77
the corresponding structures.
88
"""
9-
version = "0.5.1"
9+
version = "0.6.0"
1010
authors = [
1111
"Philipp Schuster <[email protected]>"
1212
]

multiboot2/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## v0.23.0 (2024-09-11)
6+
57
- dependency updates
68
- **Breaking:** MSRV is now 1.75
79
- Added missing tags:

multiboot2/Cargo.toml

+2-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ structures and the contained information tags. Usable in `no_std` environments,
66
such as a kernel. An optional builder feature also allows the construction of
77
the corresponding structures.
88
"""
9-
version = "0.22.2"
9+
version = "0.23.0"
1010
authors = [
1111
"Philipp Oppermann <[email protected]>",
1212
"Calvin Lee <[email protected]>",
@@ -47,11 +47,7 @@ derive_more.workspace = true
4747
log.workspace = true
4848
ptr_meta.workspace = true
4949
multiboot2-common.workspace = true
50-
# We only use a very basic type definition from this crate. To prevent MSRV
51-
# bumps from uefi-raw, I restrict this here. Upstream users are likely to have
52-
# two versions of this library in it, which is no problem, as we only use the
53-
# type definition.
54-
uefi-raw = { version = "~0.7", default-features = false }
50+
uefi-raw = { version = "~0.8.0", default-features = false }
5551

5652
[package.metadata.docs.rs]
5753
all-features = true

0 commit comments

Comments
 (0)