diff --git a/README.md b/README.md index 3e01b2b16..5817f7003 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Explore the API docs »

- View Demos + View Demos · Report a Bug · diff --git a/rp2040-hal/CHANGELOG.md b/rp2040-hal/CHANGELOG.md index 82933c3c6..9c82e9c66 100644 --- a/rp2040-hal/CHANGELOG.md +++ b/rp2040-hal/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0] - 2022-12-11 + ### Changed - Moved BSP crates to separate repo at https://github.com/rp-rs/rp-hal-boards - @jannic @@ -44,6 +46,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Removed support for critical-section 0.2 (was already deprecated) - @jannic +## [0.6.1] - 2022-11-30 + +### Changed + +- Upgraded dependency on critical-section 0.2 to 0.2.8 - @jannic + (There is also a dependency on version 1.0.0) +- Remove critical-section impl for version 0.2 - @jannic + Both 0.2.8 and 1.x use the same symbols internally to implement the + critical sections, so one impl is sufficient, and having both causes + compilation errors + ## [0.6.0] - 2022-08-26 ### Added @@ -203,7 +216,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.6.0...HEAD +[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/rp-rs/rp-hal/compare/v0.6.0...v0.7.0 +[0.6.1]: https://github.com/rp-rs/rp-hal/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/rp-rs/rp-hal/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/rp-rs/rp-hal/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/rp-rs/rp-hal/compare/v0.3.0...v0.4.0 diff --git a/rp2040-hal/Cargo.toml b/rp2040-hal/Cargo.toml index f3a97e20e..118b86bdd 100644 --- a/rp2040-hal/Cargo.toml +++ b/rp2040-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rp2040-hal" -version = "0.6.0" +version = "0.7.0" authors = ["The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal" diff --git a/rp2040-hal/README.md b/rp2040-hal/README.md index d17b58e02..10595678d 100644 --- a/rp2040-hal/README.md +++ b/rp2040-hal/README.md @@ -13,7 +13,7 @@ Explore the API docs »

- View Demos + View Demos · Report a Bug · @@ -70,7 +70,7 @@ https://github.com/rp-rs/rp-hal-boards/ for more details. To include this crate in your project, amend your `Cargo.toml` file to include ```toml -rp2040-hal = "0.6.0" +rp2040-hal = "0.7.0" ``` To obtain a copy of the source code (e.g. if you want to propose a bug-fix or