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
This commit is contained in:
9names 2021-09-22 20:43:30 +10:00 committed by GitHub
parent be4a7e0498
commit b0c15ccc77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 23 additions and 12 deletions

View file

@ -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

View file

@ -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]

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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]

View file

@ -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"] }

View file

@ -1,6 +1,6 @@
[package]
name = "rp2040-hal"
version = "0.2.0"
version = "0.3.0"
authors = ["evan <evanmolder@gmail.com>"]
edition = "2018"
homepage = "https://github.com/rp-rs/rp-hal"