Skip to content

release: uefi-0.30.0 #1285

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
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
2 changes: 1 addition & 1 deletion 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.29.0", features = [ "panic_handler", "logger" ] }
uefi = { version = "0.30.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.29.0", features = ["panic_handler"] }
uefi = { version = "0.30.0", features = ["panic_handler"] }
2 changes: 1 addition & 1 deletion uefi-raw/src/capsule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub struct CapsuleBlockDescriptor {
/// Either a data block pointer or a continuation pointer.
///
/// * If `length` is non-zero, this is the physical address of the data
/// block.
/// block.
/// * If `length` is zero:
/// * If `addr` is non-zero, this is the physical address of another block
/// of `CapsuleBlockDescriptor`.
Expand Down
3 changes: 1 addition & 2 deletions uefi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# uefi - [Unreleased]



# uefi - 0.30.0 (unreleased)
# uefi - 0.30.0 (2024-08-02)
## Changed
- **Breaking:**: Fixed a bug in the impls of `TryFrom<&[u8]>` for
`&DevicePathHeader`, `&DevicePathNode` and `&DevicePath` that could lead to
Expand Down
2 changes: 1 addition & 1 deletion uefi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi"
version = "0.29.0"
version = "0.30.0"
readme = "README.md"
description = "Safe and easy-to-use wrapper for building UEFI apps."

Expand Down
Loading