From b0c15ccc77395ca088917541b8e7358b5e9b62b8 Mon Sep 17 00:00:00 2001 From: 9names <60134748+9names@users.noreply.github.com> Date: Wed, 22 Sep 2021 20:43:30 +1000 Subject: [PATCH] Update changelog and bump verson for hal release 0.3.0 (#121) * Update CHANGELOG.md and Cargo.toml for release 0.3.0 * Bump BSP hal dep version --- CHANGELOG.md | 21 ++++++++++++++++----- boards/adafruit_macropad/Cargo.toml | 2 +- boards/feather_rp2040/Cargo.toml | 2 +- boards/pico/Cargo.toml | 2 +- boards/pico_explorer/Cargo.toml | 2 +- boards/pico_lipo_16mb/Cargo.toml | 2 +- boards/pro_micro_rp2040/Cargo.toml | 2 +- rp2040-hal/Cargo.toml | 2 +- 8 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbfd4b9..04cc8f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -- Added peripheral drivers: Timer(counter) -- Added examples: Watchdog -- Added docs: Watchdog +## [0.3.0] - 2021-09-20 -## [0.2.0] +### Added +- peripheral drivers: Timer(counter) with EH traits, USB, PIO +- examples: Watchdog, GPIO, ADC, i2c, rtic blinky, usb (serial echo, mouse) +- docs: Watchdog +- bsps: adafruit feather +- bsp examples: sparkfun pro micro PIO RGB rainbow LED + +### Changed +- i2c fixes +- spi fixes +- pwm fixes + +## [0.2.0] - 2021-08-14 ### Added @@ -21,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/rp-rs/rp-hal/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/rp-rs/rp-hal/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/rp-rs/rp-hal/releases/tag/v0.1.0 diff --git a/boards/adafruit_macropad/Cargo.toml b/boards/adafruit_macropad/Cargo.toml index e890409..32910aa 100644 --- a/boards/adafruit_macropad/Cargo.toml +++ b/boards/adafruit_macropad/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} +rp2040-hal = { path = "../../rp2040-hal", version = "0.3.0"} cortex-m-rt = { version = "0.7", optional = true } [features] diff --git a/boards/feather_rp2040/Cargo.toml b/boards/feather_rp2040/Cargo.toml index e83ae34..87fed6f 100644 --- a/boards/feather_rp2040/Cargo.toml +++ b/boards/feather_rp2040/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} +rp2040-hal = { path = "../../rp2040-hal", version = "0.3.0"} cortex-m-rt = { version = "0.7", optional = true } embedded-time = "0.12.0" diff --git a/boards/pico/Cargo.toml b/boards/pico/Cargo.toml index 561503f..f423b94 100644 --- a/boards/pico/Cargo.toml +++ b/boards/pico/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} +rp2040-hal = { path = "../../rp2040-hal", version = "0.3.0"} cortex-m-rt = { version = "0.7", optional = true } embedded-time = "0.12.0" usb-device= "0.2.8" diff --git a/boards/pico_explorer/Cargo.toml b/boards/pico_explorer/Cargo.toml index 1c62cb6..7b6d780 100644 --- a/boards/pico_explorer/Cargo.toml +++ b/boards/pico_explorer/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} +rp2040-hal = { path = "../../rp2040-hal", version = "0.3.0"} cortex-m-rt = { version = "0.7", optional = true } embedded-hal = { version = "0.2.4", features = ["unproven"] } st7789 = "0.6.1" diff --git a/boards/pico_lipo_16mb/Cargo.toml b/boards/pico_lipo_16mb/Cargo.toml index 8790b46..c4a05d6 100644 --- a/boards/pico_lipo_16mb/Cargo.toml +++ b/boards/pico_lipo_16mb/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} +rp2040-hal = { path = "../../rp2040-hal", version = "0.3.0"} cortex-m-rt = { version = "0.7", optional = true } [dev-dependencies] diff --git a/boards/pro_micro_rp2040/Cargo.toml b/boards/pro_micro_rp2040/Cargo.toml index 9e9a002..3c1833f 100644 --- a/boards/pro_micro_rp2040/Cargo.toml +++ b/boards/pro_micro_rp2040/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.3.0" } cortex-m-rt = { version = "0.7.0", optional = true } embedded-hal = { version = "0.2.4", features = ["unproven"] } diff --git a/rp2040-hal/Cargo.toml b/rp2040-hal/Cargo.toml index 745a339..71a4360 100644 --- a/rp2040-hal/Cargo.toml +++ b/rp2040-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rp2040-hal" -version = "0.2.0" +version = "0.3.0" authors = ["evan "] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal"