Skip to content

Commit e2776f1

Browse files
authored
Merge pull request #233 from rust-osdev/update
workspace: prepare updates
2 parents c82de76 + c5c5e77 commit e2776f1

File tree

9 files changed

+28
-22
lines changed

9 files changed

+28
-22
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

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

33
## Unreleased
44

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

811
## v0.1.2 (2024-08-24)
912

multiboot2-common/Cargo.toml

+2-2
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
]
@@ -17,7 +17,7 @@ keywords = [
1717
"Multiboot2"
1818
]
1919
readme = "README.md"
20-
homepage = "https://github.com/rust-osdev/multiboot2"
20+
homepage = "https://github.com/rust-osdev/multiboot2/tree/main/multiboot2-common"
2121
repository = "https://github.com/rust-osdev/multiboot2"
2222
documentation = "https://docs.rs/multiboot2-common"
2323
rust-version = "1.75"

multiboot2-header/CHANGELOG.md

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

33
## Unreleased
44

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

811
## v0.5.1 (2024-08-24)
912

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

+3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
## Unreleased
44

5+
## v0.23.0 (2024-09-17)
6+
57
- dependency updates
68
- **Breaking:** MSRV is now 1.75
79
- Added missing tags along with getters for on `BootInformation`:
810
- `ApmTag`
911
- `BootdevTag`
1012
- `NetworkTag`
1113
- `BootInformation::tags` iterator is now public
14+
- misc metadata fixes
1215

1316
## v0.22.2 (2024-08-24)
1417

multiboot2/Cargo.toml

+3-7
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]>",
@@ -29,7 +29,7 @@ keywords = [
2929
# without this, sometimes crates.io doesn't show the preview of the README
3030
# I expeciended this multiple times in the past
3131
readme = "README.md"
32-
homepage = "https://github.com/rust-osdev/multiboot2"
32+
homepage = "https://github.com/rust-osdev/multiboot2/tree/main/multiboot2"
3333
repository = "https://github.com/rust-osdev/multiboot2"
3434
documentation = "https://docs.rs/multiboot2"
3535
rust-version = "1.75"
@@ -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)