From 7b64d70f0d487cd4f728d1e7febfdf40ba415f33 Mon Sep 17 00:00:00 2001 From: ceekdee Date: Thu, 14 Sep 2023 11:51:04 -0500 Subject: [PATCH] Prepare v2.1.1. --- CHANGELOG.md | 10 +++++++++- Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7daceb..a0832b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [v2.1.1] - 2023-09-14 + +### Changed +- Use the lora-modulation crate for modulation enums. +- Update dependencies. +- Make embedded_hal_async::delay::DelayUs available publically to avoid a dependency in crates using lora-phy. + ## [v2.1.0] - 2023-07-07 ### Changed @@ -57,7 +64,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - first release to crates.io. -[Unreleased]: https://github.com/embassy-rs/lora-phy/compare/v2.1.0...HEAD +[Unreleased]: https://github.com/embassy-rs/lora-phy/compare/v2.1.1...HEAD +[v2.1.1]: https://github.com/embassy-rs/lora-phy/compare/v2.1.0...v2.1.1 [v2.1.0]: https://github.com/embassy-rs/lora-phy/compare/v2.0.0...v2.1.0 [v2.0.0]: https://github.com/embassy-rs/lora-phy/compare/v1.2.0...v2.0.0 [v1.2.0]: https://github.com/embassy-rs/lora-phy/compare/v1.1.0...v1.2.0 diff --git a/Cargo.toml b/Cargo.toml index 111e9dc..9054645 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lora-phy" -version = "2.1.0" +version = "2.1.1" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/embassy-rs/lora-phy" @@ -14,4 +14,4 @@ log = { version = "0.4" } lora-modulation = { version = ">=0.1.2" } num-traits = { version = "0.2", default-features = false } -embedded-hal-async = { version = "=0.2.0-alpha.2"} +embedded-hal-async = { version = "=1.0.0-rc.1"}