diff --git a/CHANGELOG.md b/CHANGELOG.md index 340e4f4..b5b6ca1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.12.13] — 2026-03-18 + +### Fixes + +- Fix docs.rs build failure: replace removed `doc_auto_cfg` feature with `doc_cfg` (removed in rustc 1.92.0, merged into `doc_cfg`) + ## [0.12.12] — 2026-03-18 ### Improvements diff --git a/Cargo.lock b/Cargo.lock index 231ee9e..cc962a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -884,7 +884,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "superlighttui" -version = "0.12.12" +version = "0.12.13" dependencies = [ "compact_str", "criterion", diff --git a/Cargo.toml b/Cargo.toml index d5088f0..fe9a7a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "superlighttui" -version = "0.12.12" +version = "0.12.13" edition = "2021" description = "Super Light TUI - A lightweight, ergonomic terminal UI library" license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index 4bcef1e..f35f4ba 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ // Safety #![forbid(unsafe_code)] // Documentation -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] #![warn(rustdoc::broken_intra_doc_links)] #![warn(rustdoc::private_intra_doc_links)] // Correctness