-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
|
||
## [v0.2.0] - 2021-02-02 | ||
|
||
### Changed | ||
|
||
- [breaking-change] The version of the `generic-array` dependency has been | ||
bumped to v0.14.2 (now that `heapless` v0.6.0` is out). | ||
|
||
## [v0.1.1] - 2021-02-11 | ||
|
||
### Fixed | ||
|
||
- `std`-triggering regression |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "littlefs2" | ||
description = "Idiomatic Rust API for littlefs" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
authors = ["Nicolas Stalder <[email protected]>", "Brandon Edens <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0 OR MIT" | ||
|
@@ -12,9 +12,8 @@ repository = "https://github.com/nickray/littlefs2" | |
[dependencies] | ||
bitflags = "1.0.4" | ||
cty = "0.2.1" | ||
# can't currently bump because https://github.com/japaric/heapless/issues/166 | ||
generic-array = "0.13.2" | ||
heapless = "0.5.6" | ||
generic-array = "0.14.2" | ||
heapless = "0.6.0" | ||
# heapless-bytes = { path = "../heapless-bytes", optional = true } | ||
|
||
# Listed as regular dependency behind feature flag, | ||
|
@@ -28,6 +27,9 @@ ufmt = "0.1.0" | |
|
||
[dependencies.cstr_core] | ||
default-features = false | ||
# Update: we are just waiting for stabilization of | ||
# https://doc.rust-lang.org/beta/cargo/reference/unstable.html#resolver | ||
|
||
# HACK TL;DR :sadface: we are using an older version here to avoid | ||
# rust-lang/cargo#4361 which has been fixed in nightly but lives behind a | ||
# unstable flag as of Rust 1.42.0 | ||
|