Skip to content

Commit 3686692

Browse files
authored
Merge pull request #958 from rust-osdev/release
Release
2 parents 755ed9c + 736c8e7 commit 3686692

File tree

8 files changed

+17
-9
lines changed

8 files changed

+17
-9
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## uefi - [Unreleased]
44

5+
## uefi-macros - [Unreleased]
6+
7+
## uefi-raw - [Unreleased]
8+
9+
## uefi-services - [Unreleased]
10+
11+
## uefi - 0.25.0 (2023-10-10)
12+
513
### Changed
614
- MSRV bumped to 1.70.
715
- `Input::wait_for_key_event` now returns an `Option<Event>`, and is no longer `const`.

Cargo.lock

+2-2
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
@@ -18,7 +18,7 @@ In `cargo.toml`, add a few dependencies:
1818
```toml
1919
[dependencies]
2020
log = "0.4"
21-
uefi = "0.24"
21+
uefi = "0.25"
2222
uefi-services = "0.21"
2323
```
2424

template/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
uefi = { version = "0.24.0", features = ["alloc"] }
8+
uefi = { version = "0.25.0", features = ["alloc"] }
99
uefi-services = "0.21.0"

uefi-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ syn = { version = "2.0.4", features = ["full"] }
2222

2323
[dev-dependencies]
2424
trybuild = "1.0.61"
25-
uefi = { version = "0.24.0", default-features = false }
25+
uefi = { version = "0.25.0", default-features = false }

uefi-raw/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uefi-raw"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
readme = "README.md"
55
description = "Raw UEFI types"
66

uefi-services/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ repository.workspace = true
1313
rust-version.workspace = true
1414

1515
[dependencies]
16-
uefi = { version = "0.24.0", features = ["global_allocator"] }
16+
uefi = { version = "0.25.0", features = ["global_allocator"] }
1717
log.workspace = true
1818
cfg-if = "1.0.0"
1919
qemu-exit = { version = "3.0.1", optional = true }

uefi/Cargo.toml

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

@@ -30,7 +30,7 @@ log.workspace = true
3030
ptr_meta.workspace = true
3131
ucs2 = "0.3.2"
3232
uefi-macros = "0.12.0"
33-
uefi-raw = "0.3.0"
33+
uefi-raw = "0.4.0"
3434
uguid.workspace = true
3535

3636
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)