Skip to content

Commit 93ccc8c

Browse files
authored
Merge pull request #1285 from nicholasbishop/bishop-release-030
release: uefi-0.30.0
2 parents 8b7ec4f + 8b2e5ff commit 93ccc8c

File tree

6 files changed

+6
-7
lines changed

6 files changed

+6
-7
lines changed

Cargo.lock

+1-1
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.29.0", features = [ "panic_handler", "logger" ] }
27+
uefi = { version = "0.30.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.29.0", features = ["panic_handler"] }
8+
uefi = { version = "0.30.0", features = ["panic_handler"] }

uefi-raw/src/capsule.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub struct CapsuleBlockDescriptor {
1818
/// Either a data block pointer or a continuation pointer.
1919
///
2020
/// * If `length` is non-zero, this is the physical address of the data
21-
/// block.
21+
/// block.
2222
/// * If `length` is zero:
2323
/// * If `addr` is non-zero, this is the physical address of another block
2424
/// of `CapsuleBlockDescriptor`.

uefi/CHANGELOG.md

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

33

4-
5-
# uefi - 0.30.0 (unreleased)
4+
# uefi - 0.30.0 (2024-08-02)
65
## Changed
76
- **Breaking:**: Fixed a bug in the impls of `TryFrom<&[u8]>` for
87
`&DevicePathHeader`, `&DevicePathNode` and `&DevicePath` that could lead to

uefi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi"
3-
version = "0.29.0"
3+
version = "0.30.0"
44
readme = "README.md"
55
description = "Safe and easy-to-use wrapper for building UEFI apps."
66

0 commit comments

Comments
 (0)