diff --git a/Cargo.lock b/Cargo.lock index 8bd22adff..c56c30228 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "uefi" -version = "0.33.0" +version = "0.34.0" dependencies = [ "bitflags 2.8.0", "cfg-if", @@ -1049,7 +1049,7 @@ dependencies = [ [[package]] name = "uefi-macros" -version = "0.17.0" +version = "0.18.0" dependencies = [ "proc-macro2", "quote", @@ -1060,7 +1060,7 @@ dependencies = [ [[package]] name = "uefi-raw" -version = "0.9.0" +version = "0.10.0" dependencies = [ "bitflags 2.8.0", "uguid", diff --git a/book/src/tutorial/app.md b/book/src/tutorial/app.md index a44cb3758..ef6f7c0aa 100644 --- a/book/src/tutorial/app.md +++ b/book/src/tutorial/app.md @@ -24,7 +24,7 @@ to your `Cargo.toml`. The resulting `Cargo.toml` should look like that: ```toml [dependencies] log = "0.4.21" -uefi = { version = "0.33.0", features = [ "panic_handler", "logger" ] } +uefi = { version = "0.34.0", features = [ "panic_handler", "logger" ] } ``` Replace the contents of `src/main.rs` with this: diff --git a/template/Cargo.toml b/template/Cargo.toml index c442c5a16..77c869c44 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -uefi = { version = "0.33.0", features = ["panic_handler"] } +uefi = { version = "0.34.0", features = ["panic_handler"] } diff --git a/uefi-macros/CHANGELOG.md b/uefi-macros/CHANGELOG.md index b6f83eaa5..7b50262b8 100644 --- a/uefi-macros/CHANGELOG.md +++ b/uefi-macros/CHANGELOG.md @@ -1,5 +1,8 @@ # uefi-macros - [Unreleased] + +# uefi-macros - 0.18.0 (2025-02-07) + As of this release, the project has been relicensed from MPL-2.0 to Apache-2.0/MIT, to better align with the Rust crate ecosystem. (This does not alter the license of previous releases.) diff --git a/uefi-macros/Cargo.toml b/uefi-macros/Cargo.toml index 046571d93..b9f781c21 100644 --- a/uefi-macros/Cargo.toml +++ b/uefi-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi-macros" -version = "0.17.0" +version = "0.18.0" readme = "README.md" description = "Procedural macros for the `uefi` crate." diff --git a/uefi-raw/CHANGELOG.md b/uefi-raw/CHANGELOG.md index a969fb593..9f9e8e28c 100644 --- a/uefi-raw/CHANGELOG.md +++ b/uefi-raw/CHANGELOG.md @@ -1,5 +1,8 @@ # uefi-raw - [Unreleased] + +# uefi-raw - 0.10.0 (2025-02-07) + As of this release, the project has been relicensed from MPL-2.0 to Apache-2.0/MIT, to better align with the Rust crate ecosystem. (This does not alter the license of previous releases.) diff --git a/uefi-raw/Cargo.toml b/uefi-raw/Cargo.toml index 80c1e3ba7..e872eaad9 100644 --- a/uefi-raw/Cargo.toml +++ b/uefi-raw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi-raw" -version = "0.9.0" +version = "0.10.0" readme = "README.md" description = """ Raw UEFI types and bindings for protocols, boot, and runtime services. This can diff --git a/uefi/CHANGELOG.md b/uefi/CHANGELOG.md index e6df0956b..bf159f66c 100644 --- a/uefi/CHANGELOG.md +++ b/uefi/CHANGELOG.md @@ -1,5 +1,8 @@ # uefi - [Unreleased] + +# uefi - 0.34.0 (2025-02-07) + As of this release, the project has been relicensed from MPL-2.0 to Apache-2.0/MIT, to better align with the Rust crate ecosystem. (This does not alter the license of previous releases.) diff --git a/uefi/Cargo.toml b/uefi/Cargo.toml index faaee3c90..4f9e837e0 100644 --- a/uefi/Cargo.toml +++ b/uefi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi" -version = "0.33.0" +version = "0.34.0" readme = "README.md" description = """ This crate makes it easy to develop Rust software that leverages safe, @@ -43,8 +43,8 @@ ptr_meta.workspace = true uguid.workspace = true cfg-if = "1.0.0" ucs2 = "0.3.3" -uefi-macros = "0.17.0" -uefi-raw = "0.9.0" +uefi-macros = "0.18.0" +uefi-raw = "0.10.0" qemu-exit = { version = "3.0.2", optional = true } [package.metadata.docs.rs]