diff --git a/Cargo.lock b/Cargo.lock index b2a90135b..bdf5e2044 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -972,7 +972,7 @@ dependencies = [ [[package]] name = "uefi" -version = "0.36.0" +version = "0.36.1" dependencies = [ "bitflags 2.9.4", "cfg-if", diff --git a/template/Cargo.toml b/template/Cargo.toml index 4f17ddc42..16d66fa1a 100644 --- a/template/Cargo.toml +++ b/template/Cargo.toml @@ -5,4 +5,4 @@ edition = "2024" publish = false [dependencies] -uefi = { version = "0.36", features = ["panic_handler"] } +uefi = { version = "0.36.1", features = ["panic_handler"] } diff --git a/uefi-raw/Cargo.toml b/uefi-raw/Cargo.toml index c5cf5153d..7d3b73714 100644 --- a/uefi-raw/Cargo.toml +++ b/uefi-raw/Cargo.toml @@ -23,4 +23,4 @@ bitflags.workspace = true uguid.workspace = true [package.metadata.docs.rs] -rustdoc-args = ["--cfg", "docsrs"] +all-features = true diff --git a/uefi-raw/src/lib.rs b/uefi-raw/src/lib.rs index eea91479d..646bca61c 100644 --- a/uefi-raw/src/lib.rs +++ b/uefi-raw/src/lib.rs @@ -11,7 +11,6 @@ //! [`uefi`]: https://crates.io/crates/uefi #![no_std] -#![cfg_attr(docsrs, feature(doc_cfg))] #![deny( clippy::all, clippy::missing_const_for_fn, diff --git a/uefi/CHANGELOG.md b/uefi/CHANGELOG.md index 1ce17987e..18764e70f 100644 --- a/uefi/CHANGELOG.md +++ b/uefi/CHANGELOG.md @@ -5,6 +5,11 @@ ## Changed +# uefi - v0.36.1 (2025-10-30) + +- Fixing build on + + # uefi - v0.36 (2025-10-21) ## Added diff --git a/uefi/Cargo.toml b/uefi/Cargo.toml index 80ce0ddb5..031ec0234 100644 --- a/uefi/Cargo.toml +++ b/uefi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uefi" -version = "0.36.0" +version = "0.36.1" readme = "README.md" description = """ This crate makes it easy to develop Rust software that leverages safe, @@ -48,4 +48,3 @@ qemu-exit = { version = "3.0.2", optional = true } [package.metadata.docs.rs] all-features = true -rustdoc-args = ["--cfg", "docsrs"] diff --git a/uefi/src/lib.rs b/uefi/src/lib.rs index 0cd3cb165..6827c494b 100644 --- a/uefi/src/lib.rs +++ b/uefi/src/lib.rs @@ -227,7 +227,6 @@ //! [uefi-std-tr-issue]: https://github.com/rust-lang/rust/issues/100499 //! [unstable features]: https://doc.rust-lang.org/unstable-book/ -#![cfg_attr(docsrs, feature(doc_cfg))] #![no_std] #![deny( clippy::all,