diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 3634be56..7be64a17 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - +## [v0.1.2](https://github.com/trussed-dev/littlefs2/releases/tag/core-0.1.2) - 2025-10-16 + +- Make `io::Result` alias accept other error types +- Add `debug-error` feature to have a proper debug implementation of errors +- Add support for `heapless` v0.9 and `heapless-bytes` v0.5 + ## [v0.1.1](https://github.com/trussed-dev/littlefs2/releases/tag/core-0.1.1) - 2025-01-16 - Make `Path` and `PathBuf` more const-friendly: diff --git a/core/Cargo.toml b/core/Cargo.toml index 8375676e..29372815 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "littlefs2-core" -version = "0.1.1" +version = "0.1.2" authors = ["The Trussed developers"] description = "Core types for the littlefs2 crate"