aboutsummaryrefslogtreecommitdiff
path: root/embassy-embedded-hal
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2024-08-02 19:14:43 +0200
committerUlf Lilleengen <[email protected]>2024-08-05 08:56:29 +0200
commit5767c003ccccfa489648df1e902da5dd3b37e708 (patch)
treea2820058b06256791917c05b25aee63ec8897c05 /embassy-embedded-hal
parente173b973ae7e0ccdd2c55befedec4482c447b590 (diff)
Prepare release of embassy-embedded-hal 0.2.0
Diffstat (limited to 'embassy-embedded-hal')
-rw-r--r--embassy-embedded-hal/CHANGELOG.md21
-rw-r--r--embassy-embedded-hal/Cargo.toml2
2 files changed, 22 insertions, 1 deletions
diff --git a/embassy-embedded-hal/CHANGELOG.md b/embassy-embedded-hal/CHANGELOG.md
new file mode 100644
index 000000000..f61fe1e24
--- /dev/null
+++ b/embassy-embedded-hal/CHANGELOG.md
@@ -0,0 +1,21 @@
1# Changelog for embassy-embedded-hal
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## Unreleased
9
10## 0.2.0
11
12- Add Clone derive to flash Partition in embassy-embedded-hal
13- Add support for all word sizes to async shared spi
14- Add Copy and 'static constraint to Word type in SPI structs
15- Improve flexibility by introducing SPI word size as a generic parameter
16- Allow changing Spi/I2cDeviceWithConfig's config at runtime
17- Impl `MultiwriteNorFlash` for `BlockingAsync`
18
19## 0.1.0 - 2024-01-10
20
21- First release
diff --git a/embassy-embedded-hal/Cargo.toml b/embassy-embedded-hal/Cargo.toml
index 905439fe7..04381e109 100644
--- a/embassy-embedded-hal/Cargo.toml
+++ b/embassy-embedded-hal/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-embedded-hal" 2name = "embassy-embedded-hal"
3version = "0.1.0" 3version = "0.2.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "Collection of utilities to use `embedded-hal` and `embedded-storage` traits with Embassy." 6description = "Collection of utilities to use `embedded-hal` and `embedded-storage` traits with Embassy."