Skip to content

Commit ab5935b

Browse files
authored
Merge pull request #25 from embassy-rs/draft-0.3-release
Prepare for 0.3.0 release
2 parents f40c906 + acf3a10 commit ab5935b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## [0.3.0] - 2022-02-07
11+
1012
- Require Nor flashes error types to be convertible to generic errors.
1113
- Provide helper functions for Nor flashes to check for generic errors.
14+
- Add embedded-storage-async crate with async version of nor flash (requires nightly).
15+
- Add `ErrorType` trait to avoid needing to specify error type multiple times.
1216

1317
## [0.2.0] - 2021-09-15
1418

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-storage"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = [
55
"Mathias Koch <[email protected]>",
66
]

embedded-storage-async/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-storage-async"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = [
55
"Mathias Koch <[email protected]>",
66
]
@@ -15,4 +15,4 @@ keywords = ["storage"]
1515
categories = ["embedded", "hardware-support", "no-std"]
1616

1717
[dependencies]
18-
embedded-storage = { path = "../" }
18+
embedded-storage = { version = "0.3.0", path = "../" }

0 commit comments

Comments
 (0)