diff --git a/Cargo.lock b/Cargo.lock index c56c30228..7e52544f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1034,7 +1034,7 @@ dependencies = [ [[package]] name = "uefi" -version = "0.34.0" +version = "0.34.1" dependencies = [ "bitflags 2.8.0", "cfg-if", diff --git a/template/Cargo.toml b/template/Cargo.toml index 77c869c44..fb010881d 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -5,4 +5,4 @@ edition = "2021" publish = false [dependencies] -uefi = { version = "0.34.0", features = ["panic_handler"] } +uefi = { version = "0.34.1", features = ["panic_handler"] } diff --git a/uefi/CHANGELOG.md b/uefi/CHANGELOG.md index bf159f66c..78f227e69 100644 --- a/uefi/CHANGELOG.md +++ b/uefi/CHANGELOG.md @@ -1,6 +1,11 @@ # uefi - [Unreleased] +# uefi - 0.34.1 (2025-02-07) + +Trivial release to fix crate license documentation. + + # uefi - 0.34.0 (2025-02-07) As of this release, the project has been relicensed from MPL-2.0 to diff --git a/uefi/Cargo.toml b/uefi/Cargo.toml index 4f9e837e0..9836333cc 100644 --- a/uefi/Cargo.toml +++ b/uefi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi" -version = "0.34.0" +version = "0.34.1" readme = "README.md" description = """ This crate makes it easy to develop Rust software that leverages safe,