diff --git a/rp2040-hal/CHANGELOG.md b/rp2040-hal/CHANGELOG.md index a135ac7e7..54d3ed4df 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.8.0] - 2023-02-16 + ### Added - Add SPI slave support - @zaksabeast @@ -237,7 +239,8 @@ The Minimum-Supported Rust Version (MSRV) for this release is 1.54. - Initial release -[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.8.0...HEAD +[0.8.0]: https://github.com/rp-rs/rp-hal/compare/v0.7.0...v0.8.0 [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 diff --git a/rp2040-hal/Cargo.toml b/rp2040-hal/Cargo.toml index 38846e184..6c2a19ec2 100644 --- a/rp2040-hal/Cargo.toml +++ b/rp2040-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rp2040-hal" -version = "0.7.0" +version = "0.8.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 10595678d..38e49f0bc 100644 --- a/rp2040-hal/README.md +++ b/rp2040-hal/README.md @@ -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.7.0" +rp2040-hal = "0.8.0" ``` To obtain a copy of the source code (e.g. if you want to propose a bug-fix or