Skip to content

release: uefi-raw-0.11.0, uefi-macros-0.18.1, uefi-0.35.0 #1652

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

Merged
merged 1 commit into from
May 4, 2025
Merged
Show file tree
Hide file tree
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
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion book/src/tutorial/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ to your `Cargo.toml`. The resulting `Cargo.toml` should look like that:
```toml
[dependencies]
log = "0.4.21"
uefi = { version = "0.34.0", features = [ "panic_handler", "logger" ] }
uefi = { version = "0.35.0", features = [ "panic_handler", "logger" ] }
```

Replace the contents of `src/main.rs` with this:
Expand Down
2 changes: 1 addition & 1 deletion template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2021"
publish = false

[dependencies]
uefi = { version = "0.34.1", features = ["panic_handler"] }
uefi = { version = "0.35", features = ["panic_handler"] }
5 changes: 5 additions & 0 deletions uefi-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# uefi-macros - [Unreleased]


# uefi-macros - 0.18.1 (2025-05-04)

Minor documentation updates.


# uefi-macros - 0.18.0 (2025-02-07)

As of this release, the project has been relicensed from MPL-2.0 to
Expand Down
2 changes: 1 addition & 1 deletion uefi-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi-macros"
version = "0.18.0"
version = "0.18.1"
readme = "README.md"
description = "Procedural macros for the `uefi` crate."

Expand Down
3 changes: 3 additions & 0 deletions uefi-raw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# uefi-raw - [Unreleased]


# uefi-raw - 0.11.0 (2025-05-04)

## Added
- MSRV increased to 1.77.
- Added `Boolean` type
Expand Down
2 changes: 1 addition & 1 deletion uefi-raw/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi-raw"
version = "0.10.0"
version = "0.11.0"
readme = "README.md"
description = """
Raw UEFI types and bindings for protocols, boot, and runtime services. This can
Expand Down
5 changes: 4 additions & 1 deletion uefi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# uefi - [Unreleased]


# uefi - 0.35.0 (2025-05-04)

## Added
- Added `boot::signal_event`.
- Added conversions between `proto::network::IpAddress` and `core::net` types.
Expand Down Expand Up @@ -42,7 +45,7 @@
- The `Display` impl for `CStr8` now excludes the trailing null character.
- `VariableKeys` initializes with a larger name buffer to work around firmware
bugs on some devices.
- The UEFI `allocator::Allocator` has been optimized for page-aligned
- The UEFI `allocator::Allocator` has been optimized for page-aligned
allocations.


Expand Down
6 changes: 3 additions & 3 deletions uefi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi"
version = "0.34.1"
version = "0.35.0"
readme = "README.md"
description = """
This crate makes it easy to develop Rust software that leverages safe,
Expand Down Expand Up @@ -43,8 +43,8 @@ ptr_meta.workspace = true
uguid.workspace = true
cfg-if = "1.0.0"
ucs2 = "0.3.3"
uefi-macros = "0.18.0"
uefi-raw = "0.10.0"
uefi-macros = "0.18.1"
uefi-raw = "0.11.0"
qemu-exit = { version = "3.0.2", optional = true }

[package.metadata.docs.rs]
Expand Down
Loading