Skip to content
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
4 changes: 2 additions & 2 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 template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ edition = "2024"
publish = false

[dependencies]
uefi = { version = "0.36", features = ["panic_handler"] }
uefi = { version = "0.36.1", features = ["panic_handler"] }
7 changes: 7 additions & 0 deletions uefi-raw/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@

## Added

## Changed


# uefi-raw - v0.13.0 (2025-11-05)

## Changed
- **Breaking:** Various uses of `bool` have been replaced with `Boolean`.
- Fixing build on <https://docs.rs/uefi>


# uefi-raw - v0.12 (2025-10-21)
Expand Down Expand Up @@ -34,6 +40,7 @@
- **Breaking:** The MSRV is now 1.85.1 and the crate uses the Rust 2024 edition.
- The documentation for UEFI protocols has been streamlined and improved.


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

## Added
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.12.0"
version = "0.13.0"
readme = "README.md"
description = """
Raw UEFI types and bindings for protocols, boot, and runtime services. This can
Expand Down
5 changes: 5 additions & 0 deletions uefi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
## Changed


# uefi - v0.36.1 (2025-11-05)

- Fixing build on <https://docs.rs/uefi>


# uefi - v0.36 (2025-10-21)

## Added
Expand Down
4 changes: 2 additions & 2 deletions uefi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi"
version = "0.36.0"
version = "0.36.1"
readme = "README.md"
description = """
This crate makes it easy to develop Rust software that leverages safe,
Expand Down Expand Up @@ -43,7 +43,7 @@ uguid.workspace = true
cfg-if = "1.0.0"
ucs2 = "0.3.3"
uefi-macros = "0.19.0"
uefi-raw = "0.12.0"
uefi-raw = "0.13.0"
qemu-exit = { version = "3.0.2", optional = true }

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