Skip to content

Commit

Permalink
Merge pull request #44 from Dirbaio/release-esav041
Browse files Browse the repository at this point in the history
async: reexport nor flash errors, release v0.4.1
  • Loading branch information
MathiasKoch authored Dec 4, 2023
2 parents 6343027 + cf01d01 commit 4bcdfdb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions embedded-storage-async/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
## [0.4.1] - 2023-11-28

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

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

Initial release to crates.io.

[Unreleased]: https://github.com/rust-embedded-community/embedded-storage/compare/embedded-storage-async-v0.4.0...HEAD
[Unreleased]: https://github.com/rust-embedded-community/embedded-storage/compare/embedded-storage-async-v0.4.1...HEAD
[0.4.1]: https://github.com/rust-embedded-community/embedded-storage/compare/embedded-storage-async-v0.4.0...embedded-storage-async-v0.4.1
[0.4.0]: https://github.com/rust-embedded-community/embedded-storage/compare/embedded-storage-async-v0.3.0...embedded-storage-async-v0.4.0
[0.3.0]: https://github.com/rust-embedded-community/embedded-storage/releases/tag/embedded-storage-async-v0.3.0
2 changes: 1 addition & 1 deletion embedded-storage-async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "embedded-storage-async"
version = "0.4.0"
version = "0.4.1"
authors = [
"Mathias Koch <mk@blackbird.online>",
"Ulf Lilleengen <lulf@redhat.com>",
Expand Down
2 changes: 1 addition & 1 deletion embedded-storage-async/src/nor_flash.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use embedded_storage::nor_flash::ErrorType;
pub use embedded_storage::nor_flash::{ErrorType, NorFlashError, NorFlashErrorKind};

/// Read only NOR flash trait.
pub trait ReadNorFlash: ErrorType {
Expand Down

0 comments on commit 4bcdfdb

Please sign in to comment.