From 127b7286ed29bd9cec12d2dbebfe104b33647cc3 Mon Sep 17 00:00:00 2001 From: 9names <60134748+9names@users.noreply.github.com> Date: Sun, 28 Apr 2024 12:44:06 +1000 Subject: [PATCH] Preperations for release 0.10.2 --- rp2040-hal/CHANGELOG.md | 25 ++++++++++++++++++++++++- rp2040-hal/Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/rp2040-hal/CHANGELOG.md b/rp2040-hal/CHANGELOG.md index b9195cbbf..40d78206a 100644 --- a/rp2040-hal/CHANGELOG.md +++ b/rp2040-hal/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.2] - 2024-04-28 + +### Changed + +- Move TransferSize to dma module - #790 @jsgf +- Enable transfer size of PIO DMA to be specified - #788 @jsgf + +## [0.10.1] - 2024-04-28 + +### Added + +- Implement send_break support - #700 @ithinuel +- Implement embedded_io traits for Reader/Writer - #781 @jannic + +### Changed + +- Fix debugging after halt() - #785 @jannic +- Slightly improve deprecation note on from_program - #792 @jannic +- Fix float_to_fix64 return value & f32 trig function doc corrections - #787 @Text-Input +- Simplify ceiling division in delay calculation - #783 @jannic + ## [0.10.0] - 2024-03-10 ### Added @@ -391,7 +412,9 @@ The Minimum-Supported Rust Version (MSRV) for this release is 1.54. - Initial release -[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.10.2...HEAD +[0.10.2]: https://github.com/rp-rs/rp-hal/compare/v0.10.1...v0.10.2 +[0.10.1]: https://github.com/rp-rs/rp-hal/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/rp-rs/rp-hal/compare/v0.9.1...v0.10.0 [0.9.1]: https://github.com/rp-rs/rp-hal/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/rp-rs/rp-hal/compare/v0.8.1...v0.9.0 diff --git a/rp2040-hal/Cargo.toml b/rp2040-hal/Cargo.toml index 0718629ff..c8de1a929 100644 --- a/rp2040-hal/Cargo.toml +++ b/rp2040-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rp2040-hal" -version = "0.10.0" +version = "0.10.2" authors = ["The rp-rs Developers"] edition = "2021" homepage = "https://github.com/rp-rs/rp-hal"