From 2e644b3301b26bbcebabe4547b8de5ac5ac36730 Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Sun, 15 Mar 2026 19:03:29 +0100 Subject: [PATCH 1/2] littlefs2: Fix documentation build on docs.rs The doc_auto_cfg feature has been replaced by doc_cfg in Rust 1.92. Fixes: https://github.com/trussed-dev/littlefs2/issues/127 --- CHANGELOG.md | 1 + src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 665cb4ed..423ea6e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Documented the MSRV 1.87 +- Fixed documentation build on docs.rs. ## [v0.7.0](https://github.com/trussed-dev/littlefs2/releases/tag/0.7.0) - 2026-03-09 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)] From 4f1a5949a0fbae67583486e56426ecc2a785b1bf Mon Sep 17 00:00:00 2001 From: Robin Krahl Date: Sun, 15 Mar 2026 19:05:29 +0100 Subject: [PATCH 2/2] Release v0.7.1 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 423ea6e8..87e5c5c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,17 @@ 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 -- Fixed documentation build on docs.rs. ## [v0.7.0](https://github.com/trussed-dev/littlefs2/releases/tag/0.7.0) - 2026-03-09 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"]