diff --git a/CHANGELOG.md b/CHANGELOG.md index 665cb4ed..87e5c5c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +- + +## [v0.7.1](https://github.com/trussed-dev/littlefs2/releases/tag/0.7.1) - 2026-03-20 + +### Fixed + +- Fixed documentation build on docs.rs. + ### Changed - Documented the MSRV 1.87 diff --git a/Cargo.toml b/Cargo.toml index 49a2157d..f153aba6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/trussed-dev/littlefs2" [package] name = "littlefs2" description = "Idiomatic Rust API for littlefs" -version = "0.7.0" +version = "0.7.1" authors = ["Nicolas Stalder ", "Brandon Edens ", "The Trussed developers"] readme = "README.md" categories = ["embedded", "filesystem", "no-std"] diff --git a/src/lib.rs b/src/lib.rs index c7c5f92d..0324bcea 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ #![cfg_attr(not(test), no_std)] -#![cfg_attr(docsrs, feature(doc_auto_cfg))] +#![cfg_attr(docsrs, feature(doc_cfg))] // FIXME #![allow(clippy::missing_safety_doc)]