Skip to content

Commit b47fe30

Browse files
committed
Merge remote-tracking branch 'upstream/version-0.30' into foo
2 parents e76ad8a + 93ccc8c commit b47fe30

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
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: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@
4747
memory unsafety. See <https://github.com/rust-osdev/uefi-rs/issues/1281>.
4848

4949

50+
# uefi - 0.30.0 (2024-08-02)
51+
## Changed
52+
- **Breaking:**: Fixed a bug in the impls of `TryFrom<&[u8]>` for
53+
`&DevicePathHeader`, `&DevicePathNode` and `&DevicePath` that could lead to
54+
memory unsafety. See <https://github.com/rust-osdev/uefi-rs/issues/1281>.
55+
56+
5057
# uefi - 0.29.0 (2024-07-02)
5158

5259
## Added

uefi/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"
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)