Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preperations for release 0.10.2 #797

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion rp2040-hal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rp2040-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Loading