Skip to content

Commit

Permalink
workspace: prepare releases
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Sep 11, 2024
1 parent 3ce9e31 commit 994ddcd
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 20 deletions.
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
Expand Up @@ -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
Expand Down
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.

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

## Unreleased

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

- dependency updates
- **Breaking:** MSRV is now 1.75
- misc metadata fixes
Expand Down
2 changes: 1 addition & 1 deletion multiboot2-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <phip1611@gmail.com>"
]
Expand Down
2 changes: 2 additions & 0 deletions multiboot2-header/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

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

- dependency updates
- **Breaking:** MSRV is now 1.75
- misc metadata fixes
Expand Down
2 changes: 1 addition & 1 deletion multiboot2-header/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <phip1611@gmail.com>"
]
Expand Down
2 changes: 2 additions & 0 deletions multiboot2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

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

- dependency updates
- **Breaking:** MSRV is now 1.75
- Added missing tags:
Expand Down
8 changes: 2 additions & 6 deletions multiboot2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dev@phil-opp.com>",
"Calvin Lee <cyrus296@gmail.com>",
Expand Down Expand Up @@ -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

0 comments on commit 994ddcd

Please sign in to comment.