diff --git a/CHANGELOG.md b/CHANGELOG.md index f441232ec..724704403 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. @@ -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 @@ -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 diff --git a/Cargo.toml b/Cargo.toml index 18d780a14..209ab5f04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi" -version = "0.16.0" +version = "0.17.0" authors = ["Gabriel Majeri "] readme = "README.md" edition = "2021" @@ -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 = [ diff --git a/template/Cargo.toml b/template/Cargo.toml index 74a6cbf1f..bddea5e0f 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -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" diff --git a/uefi-macros/Cargo.toml b/uefi-macros/Cargo.toml index 3b4ff5be8..1447d1352 100644 --- a/uefi-macros/Cargo.toml +++ b/uefi-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi-macros" -version = "0.7.0" +version = "0.8.1" authors = ["Hadrien G. "] readme = "README.md" edition = "2021" @@ -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 } diff --git a/uefi-services/Cargo.toml b/uefi-services/Cargo.toml index 08dfbe7fc..1355e8982 100644 --- a/uefi-services/Cargo.toml +++ b/uefi-services/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi-services" -version = "0.13.0" +version = "0.14.0" authors = ["Gabriel Majeri "] edition = "2021" description = "Higher-level utilities for uefi-rs" @@ -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 }