Skip to content

Commit d0747ef

Browse files
authored
Merge pull request #1652 from rust-osdev/bishop-release-035
release: uefi-raw-0.11.0, uefi-macros-0.18.1, uefi-0.35.0
2 parents c5d99aa + 4c7a2f6 commit d0747ef

File tree

9 files changed

+26
-15
lines changed

9 files changed

+26
-15
lines changed

Cargo.lock

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

book/src/tutorial/app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ to your `Cargo.toml`. The resulting `Cargo.toml` should look like that:
2424
```toml
2525
[dependencies]
2626
log = "0.4.21"
27-
uefi = { version = "0.34.0", features = [ "panic_handler", "logger" ] }
27+
uefi = { version = "0.35.0", features = [ "panic_handler", "logger" ] }
2828
```
2929

3030
Replace the contents of `src/main.rs` with this:

template/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
uefi = { version = "0.34.1", features = ["panic_handler"] }
8+
uefi = { version = "0.35", features = ["panic_handler"] }

uefi-macros/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# uefi-macros - [Unreleased]
22

33

4+
# uefi-macros - 0.18.1 (2025-05-04)
5+
6+
Minor documentation updates.
7+
8+
49
# uefi-macros - 0.18.0 (2025-02-07)
510

611
As of this release, the project has been relicensed from MPL-2.0 to

uefi-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi-macros"
3-
version = "0.18.0"
3+
version = "0.18.1"
44
readme = "README.md"
55
description = "Procedural macros for the `uefi` crate."
66

uefi-raw/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# uefi-raw - [Unreleased]
22

3+
4+
# uefi-raw - 0.11.0 (2025-05-04)
5+
36
## Added
47
- MSRV increased to 1.77.
58
- Added `Boolean` type

uefi-raw/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi-raw"
3-
version = "0.10.0"
3+
version = "0.11.0"
44
readme = "README.md"
55
description = """
66
Raw UEFI types and bindings for protocols, boot, and runtime services. This can

uefi/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# uefi - [Unreleased]
22

3+
4+
# uefi - 0.35.0 (2025-05-04)
5+
36
## Added
47
- Added `boot::signal_event`.
58
- Added conversions between `proto::network::IpAddress` and `core::net` types.
@@ -42,7 +45,7 @@
4245
- The `Display` impl for `CStr8` now excludes the trailing null character.
4346
- `VariableKeys` initializes with a larger name buffer to work around firmware
4447
bugs on some devices.
45-
- The UEFI `allocator::Allocator` has been optimized for page-aligned
48+
- The UEFI `allocator::Allocator` has been optimized for page-aligned
4649
allocations.
4750

4851

uefi/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi"
3-
version = "0.34.1"
3+
version = "0.35.0"
44
readme = "README.md"
55
description = """
66
This crate makes it easy to develop Rust software that leverages safe,
@@ -43,8 +43,8 @@ ptr_meta.workspace = true
4343
uguid.workspace = true
4444
cfg-if = "1.0.0"
4545
ucs2 = "0.3.3"
46-
uefi-macros = "0.18.0"
47-
uefi-raw = "0.10.0"
46+
uefi-macros = "0.18.1"
47+
uefi-raw = "0.11.0"
4848
qemu-exit = { version = "3.0.2", optional = true }
4949

5050
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)