Skip to content

Commit dd68a2e

Browse files
committed
release: uefi-raw-0.12.0, uefi-macros-0.19.0, uefi-0.36.0
1 parent 338f37d commit dd68a2e

File tree

9 files changed

+32
-10
lines changed

9 files changed

+32
-10
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

book/src/tutorial/app.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ 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.35.0", features = [ "panic_handler", "logger" ] }
27+
# Look for the latest version from crates.io
28+
uefi = { version = "<latest, e.g. 0.36>", features = [ "panic_handler", "logger" ] }
2829
```
2930

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

template/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ edition = "2024"
55
publish = false
66

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

uefi-macros/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# uefi-macros - [Unreleased]
22

3+
## Added
4+
5+
## Changed
6+
7+
8+
# uefi-macros - v0.19 (2025-10-21)
9+
310
## Changed
411

512
- **Breaking:** The MSRV is now 1.85.1 and the crate uses the Rust 2024 edition.

uefi-macros/Cargo.toml

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

uefi-raw/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# uefi-raw - [Unreleased]
22

3+
## Added
4+
5+
## Changed
6+
7+
8+
# uefi-raw - v0.12 (2025-10-21)
9+
310
## Added
411
- Added `AllocateType`.
512
- Added `PciRootBridgeIoProtocol`.

uefi-raw/Cargo.toml

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

uefi/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# uefi - [Unreleased]
22

3+
## Added
4+
5+
## Changed
6+
7+
8+
# uefi - v0.36 (2025-10-21)
9+
310
## Added
411
- Added `ConfigTableEntry::MEMORY_ATTRIBUTES_GUID` and `ConfigTableEntry::IMAGE_SECURITY_DATABASE_GUID`.
512
- Added `proto::usb::io::UsbIo`.

uefi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi"
3-
version = "0.35.0"
3+
version = "0.36.0"
44
readme = "README.md"
55
description = """
66
This crate makes it easy to develop Rust software that leverages safe,
@@ -42,8 +42,8 @@ ptr_meta.workspace = true
4242
uguid.workspace = true
4343
cfg-if = "1.0.0"
4444
ucs2 = "0.3.3"
45-
uefi-macros = "0.18.1"
46-
uefi-raw = "0.11.0"
45+
uefi-macros = "0.19.0"
46+
uefi-raw = "0.12.0"
4747
qemu-exit = { version = "3.0.2", optional = true }
4848

4949
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)