Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

workspace: prepare updates #233

Merged
merged 2 commits into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,8 +13,9 @@ exclude = [
bitflags = "2.6.0"
derive_more = { version = "1.0.0", default-features = false, features = ["display"] }
log = { version = "~0.4", default-features = false }
multiboot2 = { version = "0.22.2", default-features = false }
multiboot2-common = { version = "0.1.2", default-features = false }
multiboot2 = { version = "0.23.0", default-features = false }
multiboot2-common = { version = "0.2.0", default-features = false }
# Warn: 0.3 has multiple very breaking changes
ptr_meta = { version = "~0.2", default-features = false }

# This way, the corresponding crate dependency can be normalley referenced by
10 changes: 5 additions & 5 deletions integration-test/bins/Cargo.lock

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

3 changes: 3 additions & 0 deletions multiboot2-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,8 +2,11 @@

## Unreleased

## v0.2.0 (2024-09-17)

- dependency updates
- **Breaking:** MSRV is now 1.75
- misc metadata fixes

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

4 changes: 2 additions & 2 deletions multiboot2-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ name = "multiboot2-common"
description = """
Common helpers for the `multiboot2` and `multiboot2-header` crates.
"""
version = "0.1.2"
version = "0.2.0"
authors = [
"Philipp Schuster <[email protected]>"
]
@@ -17,7 +17,7 @@ keywords = [
"Multiboot2"
]
readme = "README.md"
homepage = "https://github.com/rust-osdev/multiboot2"
homepage = "https://github.com/rust-osdev/multiboot2/tree/main/multiboot2-common"
repository = "https://github.com/rust-osdev/multiboot2"
documentation = "https://docs.rs/multiboot2-common"
rust-version = "1.75"
3 changes: 3 additions & 0 deletions multiboot2-header/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,8 +2,11 @@

## Unreleased

## v0.6.0 (2024-09-17)

- dependency updates
- **Breaking:** MSRV is now 1.75
- misc metadata fixes

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

2 changes: 1 addition & 1 deletion multiboot2-header/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ contained header tags. Usable in no_std environments, such as a
bootloader. An optional builder feature also allows the construction of
the corresponding structures.
"""
version = "0.5.1"
version = "0.6.0"
authors = [
"Philipp Schuster <[email protected]>"
]
3 changes: 3 additions & 0 deletions multiboot2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,13 +2,16 @@

## Unreleased

## v0.23.0 (2024-09-17)

- dependency updates
- **Breaking:** MSRV is now 1.75
- Added missing tags along with getters for on `BootInformation`:
- `ApmTag`
- `BootdevTag`
- `NetworkTag`
- `BootInformation::tags` iterator is now public
- misc metadata fixes

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

10 changes: 3 additions & 7 deletions multiboot2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ 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.2"
version = "0.23.0"
authors = [
"Philipp Oppermann <[email protected]>",
"Calvin Lee <[email protected]>",
@@ -29,7 +29,7 @@ keywords = [
# without this, sometimes crates.io doesn't show the preview of the README
# I expeciended this multiple times in the past
readme = "README.md"
homepage = "https://github.com/rust-osdev/multiboot2"
homepage = "https://github.com/rust-osdev/multiboot2/tree/main/multiboot2"
repository = "https://github.com/rust-osdev/multiboot2"
documentation = "https://docs.rs/multiboot2"
rust-version = "1.75"
@@ -47,11 +47,7 @@ derive_more.workspace = true
log.workspace = true
ptr_meta.workspace = true
multiboot2-common.workspace = true
# We only use a very basic type definition from this crate. To prevent MSRV
# bumps from uefi-raw, I restrict this here. Upstream users are likely to have
# two versions of this library in it, which is no problem, as we only use the
# type definition.
uefi-raw = { version = "~0.7", default-features = false }
uefi-raw = { version = "~0.8.0", default-features = false }

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