Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

-

## [v0.8.0](https://github.com/trussed-dev/littlefs2/releases/tag/0.8.0) - 2026-06-23

### Added

- Added a const `new` function for backends generated with the `ram_storage!` macro.

### Changed

- Updated to [`littlefs2-sys` v0.4.0](https://github.com/trussed-dev/littlefs2-sys/releases/tag/0.4.0).

### Removed

- Removed unused arguments `filename_max_plus_one_ty` and `path_max_plus_one_ty` from `ram_storage!` and `const_ram_storage!` macros.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/trussed-dev/littlefs2"
[package]
name = "littlefs2"
description = "Idiomatic Rust API for littlefs"
version = "0.7.2"
version = "0.8.0"
authors = ["Nicolas Stalder <n@stalder.io>", "Brandon Edens <brandonedens@gmail.com>", "The Trussed developers"]
readme = "README.md"
categories = ["embedded", "filesystem", "no-std"]
Expand All @@ -29,7 +29,7 @@ delog = "0.1.0"
generic-array = "0.14"
heapless = "0.9"
littlefs2-core = { version = "0.1", path = "core" }
littlefs2-sys = { version = "0.3.2", features = ["multiversion"] }
littlefs2-sys = { version = "0.4", features = ["multiversion"] }

[dev-dependencies]
ssmarshal = "1"
Expand Down
Loading