diff --git a/CHANGELOG.md b/rp2040-hal/CHANGELOG.md similarity index 58% rename from CHANGELOG.md rename to rp2040-hal/CHANGELOG.md index bcbcf8d..23605b7 100644 --- a/CHANGELOG.md +++ b/rp2040-hal/CHANGELOG.md @@ -8,24 +8,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added -- implement `rng_core::RngCore` for `RingOscillator` + +- None + +### Changed + +- None + +## [0.3.0] - 2021-12-19 + +### Added +- A README! +- Implementation of the `critical-section` API +- DMA support +- Embedded HAL 1.0 Alpha support +- I²C Controller and Peripheral support +- Multi-core support +- PIO support +- Implementation of `rng_core::RngCore` for `RingOscillator` +- ADC example +- GPIO Interrupt support +- Multi-core FIFO example +- PIO LED Blinky example +- ROM Functions example +- SPI example +- Watchdog example +- ADC documentation ### Changed - Modified PIO API for better ergonomics - -## [0.3.0] - 2021-09-20 - -### 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 +- Updated PAC to 0.2.0 +- Exported common driver structs from top-level (e.g. it's now `Sio`, not `sio::Sio`) ## [0.2.0] - 2021-08-14 diff --git a/rp2040-hal/Cargo.toml b/rp2040-hal/Cargo.toml index 1a0b32d..0af6d73 100644 --- a/rp2040-hal/Cargo.toml +++ b/rp2040-hal/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rp2040-hal" version = "0.3.0" -authors = ["evan "] +authors = ["The rp-rs Developers"] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal" description = "A Rust Embeded-HAL impl for the rp2040 microcontroller" diff --git a/rp2040-hal/README.md b/rp2040-hal/README.md index 84d411f..dce1529 100644 --- a/rp2040-hal/README.md +++ b/rp2040-hal/README.md @@ -68,7 +68,7 @@ https://github.com/rp-rs/rp-hal/ for more details. To include this crate in your project, amend your `Cargo.toml` file to include ```toml -rp2040-hal = "0.3" +rp2040-hal = "0.3.0" ``` To obtain a copy of the source code (e.g. if you want to propose a bug-fix or