Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-nitrokey committed May 28, 2024
1 parent 17df422 commit c12b0dc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
15 changes: 10 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0] - 2024-05-28

### Added

- Add `malloc` feature flag. It allows `littlefs` to link to `malloc` and `free` instead of relying on the caller to allocate memory ([#9])
- Add `malloc` feature flag. It allows `littlefs` to link to `malloc` and `free` instead of relying on the caller to allocate memory ([#9][])
- Add a `software-intrinsics` feature flag, to disable the use of compiler intrinsics when compiling littlefs ([#12][])

# Changed
### Changed

- upgrade `bindgen` to 0.69.4 and limit symbols to those prefixed with `lfs_` and `LFS_` ([#10])
- Use `core::ffi::*` instead of `cty::*`
- Upgrade `bindgen` to 0.69.4 and limit symbols to those prefixed with `lfs_` and `LFS_` ([#10][])
- Use `core::ffi::*` instead of `cty::*` ([#14][])

[#9]: https://github.com/trussed-dev/littlefs2-sys/pull/10
[#10]: https://github.com/trussed-dev/littlefs2-sys/pull/10
[#12]: https://github.com/trussed-dev/littlefs2-sys/pull/12
[#14]: https://github.com/trussed-dev/littlefs2-sys/pull/14

## [0.1.7] - 2022-01-26

Expand All @@ -28,5 +32,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#5]: https://github.com/trussed-dev/littlefs2-sys/pull/5
[#9]: https://github.com/trussed-dev/littlefs2-sys/pull/9

[Unreleased]: https://github.com/trussed-dev/littlefs2-sys/compare/0.1.7...HEAD
[Unreleased]: https://github.com/trussed-dev/littlefs2-sys/compare/0.2.0...HEAD
[0.1.7]: https://github.com/trussed-dev/littlefs2-sys/compare/0.1.6...0.1.7
[0.2.0]: https://github.com/trussed-dev/littlefs2-sys/compare/0.1.7...0.2.0
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "littlefs2-sys"
description = "Low-level bindings to littlefs"
version = "0.1.7"
authors = ["Nicolas Stalder <[email protected]>"]
version = "0.2.0"
authors = ["Nicolas Stalder <[email protected]>", "The Trussed Developers"]
edition = "2018"
license = "BSD-3-Clause"
readme = "README.md"
Expand Down

0 comments on commit c12b0dc

Please sign in to comment.