Skip to content

Commit cdc0539

Browse files
committed
Yay, heapless bumped generic-array
1 parent 1aa6737 commit cdc0539

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/).
7+
8+
## [Unreleased]
9+
10+
## [v0.2.0] - 2021-02-02
11+
12+
### Changed
13+
14+
- [breaking-change] The version of the `generic-array` dependency has been
15+
bumped to v0.14.2 (now that `heapless` v0.6.0` is out).
16+
17+
## [v0.1.1] - 2021-02-11
18+
19+
### Fixed
20+
21+
- `std`-triggering regression

Cargo.toml

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "littlefs2"
33
description = "Idiomatic Rust API for littlefs"
4-
version = "0.1.1"
4+
version = "0.2.0"
55
authors = ["Nicolas Stalder <n@stalder.io>", "Brandon Edens <brandonedens@gmail.com>"]
66
edition = "2018"
77
license = "Apache-2.0 OR MIT"
@@ -12,9 +12,8 @@ repository = "https://github.com/nickray/littlefs2"
1212
[dependencies]
1313
bitflags = "1.0.4"
1414
cty = "0.2.1"
15-
# can't currently bump because https://github.com/japaric/heapless/issues/166
16-
generic-array = "0.13.2"
17-
heapless = "0.5.6"
15+
generic-array = "0.14.2"
16+
heapless = "0.6.0"
1817
# heapless-bytes = { path = "../heapless-bytes", optional = true }
1918

2019
# Listed as regular dependency behind feature flag,
@@ -28,6 +27,9 @@ ufmt = "0.1.0"
2827

2928
[dependencies.cstr_core]
3029
default-features = false
30+
# Update: we are just waiting for stabilization of
31+
# https://doc.rust-lang.org/beta/cargo/reference/unstable.html#resolver
32+
3133
# HACK TL;DR :sadface: we are using an older version here to avoid
3234
# rust-lang/cargo#4361 which has been fixed in nightly but lives behind a
3335
# unstable flag as of Rust 1.42.0

0 commit comments

Comments
 (0)