Skip to content

Release #958

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 5 commits into from
Oct 10, 2023
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## uefi - [Unreleased]

## uefi-macros - [Unreleased]

## uefi-raw - [Unreleased]

## uefi-services - [Unreleased]

## uefi - 0.25.0 (2023-10-10)

### Changed
- MSRV bumped to 1.70.
- `Input::wait_for_key_event` now returns an `Option<Event>`, and is no longer `const`.
Expand Down
4 changes: 2 additions & 2 deletions 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 @@ -18,7 +18,7 @@ In `cargo.toml`, add a few dependencies:
```toml
[dependencies]
log = "0.4"
uefi = "0.24"
uefi = "0.25"
uefi-services = "0.21"
```

Expand Down
2 changes: 1 addition & 1 deletion template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ edition = "2021"
publish = false

[dependencies]
uefi = { version = "0.24.0", features = ["alloc"] }
uefi = { version = "0.25.0", features = ["alloc"] }
uefi-services = "0.21.0"
2 changes: 1 addition & 1 deletion uefi-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ syn = { version = "2.0.4", features = ["full"] }

[dev-dependencies]
trybuild = "1.0.61"
uefi = { version = "0.24.0", default-features = false }
uefi = { version = "0.25.0", default-features = false }
2 changes: 1 addition & 1 deletion uefi-raw/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi-raw"
version = "0.3.0"
version = "0.4.0"
readme = "README.md"
description = "Raw UEFI types"

Expand Down
2 changes: 1 addition & 1 deletion uefi-services/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
uefi = { version = "0.24.0", features = ["global_allocator"] }
uefi = { version = "0.25.0", features = ["global_allocator"] }
log.workspace = true
cfg-if = "1.0.0"
qemu-exit = { version = "3.0.1", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions uefi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi"
version = "0.24.0"
version = "0.25.0"
readme = "README.md"
description = "Safe and easy-to-use wrapper for building UEFI apps."

Expand Down Expand Up @@ -30,7 +30,7 @@ log.workspace = true
ptr_meta.workspace = true
ucs2 = "0.3.2"
uefi-macros = "0.12.0"
uefi-raw = "0.3.0"
uefi-raw = "0.4.0"
uguid.workspace = true

[package.metadata.docs.rs]
Expand Down