Skip to content

Release uefi-macros-0.8.0, uefi-0.17.0, uefi-services-0.14.0 #513

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 7 commits into from
Sep 9, 2022
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
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## uefi - [Unreleased]

## uefi-macros - [Unreleased]

## uefi-services - [Unreleased]

## uefi - 0.17.0

### Added

- Added `Deref` and `DerefMut` trait implementations to `ScopedProtocol`.
Expand Down Expand Up @@ -54,7 +60,7 @@
can be replaced by calling `status.into()`, or `Result::from(status)`
in cases where the compiler needs a type hint.

## uefi-macros - [Unreleased]
## uefi-macros - 0.8.0

### Changed

Expand All @@ -63,7 +69,7 @@
must both be named (e.g. `image: Handle` and `_image: Handle` are both
OK, but not `_: Handle`).

## uefi-services - [Unreleased]
## uefi-services - 0.14.0

### Added

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi"
version = "0.16.0"
version = "0.17.0"
authors = ["Gabriel Majeri <[email protected]>"]
readme = "README.md"
edition = "2021"
Expand Down Expand Up @@ -32,7 +32,7 @@ panic-on-logger-errors = []
bitflags = "1.3.1"
log = { version = "0.4.5", default-features = false }
ucs2 = "0.3.2"
uefi-macros = "0.7.0"
uefi-macros = "0.8.0"

[workspace]
members = [
Expand Down
4 changes: 2 additions & 2 deletions template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ version = "0.1.0"
edition = "2021"

[dependencies]
uefi = { version = "0.16.0", features = ["exts"] }
uefi-services = "0.13.0"
uefi = { version = "0.17.0", features = ["exts"] }
uefi-services = "0.14.0"
4 changes: 2 additions & 2 deletions uefi-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi-macros"
version = "0.7.0"
version = "0.8.1"
authors = ["Hadrien G. <[email protected]>"]
readme = "README.md"
edition = "2021"
Expand All @@ -25,4 +25,4 @@ syn = { version = "1.0.74", features = ["full"] }

[dev-dependencies]
trybuild = "1.0.61"
uefi = { version = "0.16.0", default-features = false }
uefi = { version = "0.17.0", default-features = false }
4 changes: 2 additions & 2 deletions uefi-services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uefi-services"
version = "0.13.0"
version = "0.14.0"
authors = ["Gabriel Majeri <[email protected]>"]
edition = "2021"
description = "Higher-level utilities for uefi-rs"
Expand All @@ -15,7 +15,7 @@ is-it-maintained-issue-resolution = { repository = "rust-osdev/uefi-rs" }
is-it-maintained-open-issues = { repository = "rust-osdev/uefi-rs" }

[dependencies]
uefi = { version = "0.16.0", features = ["alloc", "logger"] }
uefi = { version = "0.17.0", features = ["alloc", "logger"] }
log = { version = "0.4.5", default-features = false }
cfg-if = "1.0.0"
qemu-exit = { version = "3.0.1", optional = true }
Expand Down