From 6c24a73ce250c950e22afd6a7407ef5bb2d21137 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Fri, 9 Sep 2022 12:41:57 -0400 Subject: [PATCH 1/7] (cargo-release) version 0.8.0 --- uefi-macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi-macros/Cargo.toml b/uefi-macros/Cargo.toml index 3b4ff5be8..b5d2d933d 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.0" authors = ["Hadrien G. "] readme = "README.md" edition = "2021" From 16353941eab19fee7cb90089ade252c7365508b9 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Fri, 9 Sep 2022 12:44:12 -0400 Subject: [PATCH 2/7] Update uefi dependency on uefi-macros to latest --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 18d780a14..30a22463d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 = [ From 87f3e4288343db9bd1531a746c5aa48598a03179 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Fri, 9 Sep 2022 12:45:28 -0400 Subject: [PATCH 3/7] (cargo-release) version 0.17.0 --- Cargo.toml | 2 +- template/Cargo.toml | 2 +- uefi-macros/Cargo.toml | 2 +- uefi-services/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 30a22463d..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" diff --git a/template/Cargo.toml b/template/Cargo.toml index 74a6cbf1f..59986e102 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 = { version = "0.17.0", features = ["exts"] } uefi-services = "0.13.0" diff --git a/uefi-macros/Cargo.toml b/uefi-macros/Cargo.toml index b5d2d933d..bca163b72 100644 --- a/uefi-macros/Cargo.toml +++ b/uefi-macros/Cargo.toml @@ -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..e39c4fed9 100644 --- a/uefi-services/Cargo.toml +++ b/uefi-services/Cargo.toml @@ -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 } From d1ec216f38565d3169b0bd0ea0f4bdaaf8715e2f Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Fri, 9 Sep 2022 12:46:51 -0400 Subject: [PATCH 4/7] (cargo-release) version 0.14.0 --- uefi-services/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi-services/Cargo.toml b/uefi-services/Cargo.toml index e39c4fed9..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" From 6107bc7f7c7e9d245be7ae35362071910914af48 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Fri, 9 Sep 2022 12:47:56 -0400 Subject: [PATCH 5/7] Update changelog for new releases https://github.com/rust-osdev/uefi-rs/issues/501 --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 From 1f17fc4103a6eb54a7efe3fc4056d3cc0e7142be Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Fri, 9 Sep 2022 13:05:37 -0400 Subject: [PATCH 6/7] (cargo-release) version 0.8.1 --- uefi-macros/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi-macros/Cargo.toml b/uefi-macros/Cargo.toml index bca163b72..1447d1352 100644 --- a/uefi-macros/Cargo.toml +++ b/uefi-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi-macros" -version = "0.8.0" +version = "0.8.1" authors = ["Hadrien G. "] readme = "README.md" edition = "2021" From ba2e41e7c4b11058e6888b881c7c7e8651373bd8 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Fri, 9 Sep 2022 13:08:01 -0400 Subject: [PATCH 7/7] Update template app version Not sure why cargo-release missed this one. --- template/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/Cargo.toml b/template/Cargo.toml index 59986e102..bddea5e0f 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" [dependencies] uefi = { version = "0.17.0", features = ["exts"] } -uefi-services = "0.13.0" +uefi-services = "0.14.0"