Skip to content

Commit

Permalink
Yay, heapless bumped generic-array
Browse files Browse the repository at this point in the history
  • Loading branch information
nickray committed Feb 3, 2021
1 parent 1aa6737 commit cdc0539
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 4 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
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
10 changes: 6 additions & 4 deletions Cargo.toml
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"
Expand All @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit cdc0539

Please sign in to comment.