Skip to content

Commit 4bcdfdb

Browse files
authored
Merge pull request #44 from Dirbaio/release-esav041
async: reexport nor flash errors, release v0.4.1
2 parents 6343027 + cf01d01 commit 4bcdfdb

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

embedded-storage-async/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [0.4.1] - 2023-11-28
99

1010
- Let `&mut` `NorFlash` implement `NorFlash`.
11+
- Reexport NOR flash errors from `embedded-storage`.
1112
- Use now stabilized `async_fn_in_trait` and `impl_trait_projections`.
1213

1314
## [0.4.0] - 2022-12-01
@@ -20,6 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2021

2122
Initial release to crates.io.
2223

23-
[Unreleased]: https://github.com/rust-embedded-community/embedded-storage/compare/embedded-storage-async-v0.4.0...HEAD
24+
[Unreleased]: https://github.com/rust-embedded-community/embedded-storage/compare/embedded-storage-async-v0.4.1...HEAD
25+
[0.4.1]: https://github.com/rust-embedded-community/embedded-storage/compare/embedded-storage-async-v0.4.0...embedded-storage-async-v0.4.1
2426
[0.4.0]: https://github.com/rust-embedded-community/embedded-storage/compare/embedded-storage-async-v0.3.0...embedded-storage-async-v0.4.0
2527
[0.3.0]: https://github.com/rust-embedded-community/embedded-storage/releases/tag/embedded-storage-async-v0.3.0

embedded-storage-async/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-async"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = [
55
"Mathias Koch <[email protected]>",
66
"Ulf Lilleengen <[email protected]>",

embedded-storage-async/src/nor_flash.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use embedded_storage::nor_flash::ErrorType;
1+
pub use embedded_storage::nor_flash::{ErrorType, NorFlashError, NorFlashErrorKind};
22

33
/// Read only NOR flash trait.
44
pub trait ReadNorFlash: ErrorType {

0 commit comments

Comments
 (0)