Skip to content

Commit d4ae463

Browse files
Merge pull request #1289 from phip1611/foo
Merge release-v0.30 branch into main
2 parents e76ad8a + 7c6a86c commit d4ae463

File tree

5 files changed

+32
-21
lines changed

5 files changed

+32
-21
lines changed

Cargo.lock

+28-18
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/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141

4242

4343
# uefi - 0.30.0 (2024-08-02)
44+
4445
## Changed
4546
- **Breaking:**: Fixed a bug in the impls of `TryFrom<&[u8]>` for
4647
`&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 = """
66
This crate makes it easy to develop Rust software that leverages safe,

0 commit comments

Comments
 (0)