From cdc0539a2a3d486725584dd1f6e532a323d49055 Mon Sep 17 00:00:00 2001 From: Nicolas Stalder Date: Wed, 3 Feb 2021 14:16:51 +0100 Subject: [PATCH] Yay, heapless bumped generic-array --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.toml | 10 ++++++---- 2 files changed, 27 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..e8e391d26 --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index f35d694be..c4f10faa4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "littlefs2" description = "Idiomatic Rust API for littlefs" -version = "0.1.1" +version = "0.2.0" authors = ["Nicolas Stalder ", "Brandon Edens "] 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