From d4ec87b2f7950db71a47155beb224cbbc6968eb3 Mon Sep 17 00:00:00 2001 From: Hmvp Date: Sat, 14 Aug 2021 09:40:26 +0200 Subject: [PATCH] Prepare for first release --- CHANGELOG.md | 22 ++++++++++++++++++++++ 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 +- rp2040-hal/Cargo.toml | 6 +++--- 7 files changed, 30 insertions(+), 8 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..909aa2b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,22 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.2.0] + +### Added + +- Initial version with support for Rosc, Xosc, Plls, Watchdog, Clocks, Gpio, Pwm, Adc, Spi, I2C, Resets, Uart + +## [0.1.0] + +- Initial release + +[Unreleased]: https://github.com/rp-rs/rp-hal/compare/v0.2.0...HEAD +[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 b64fbc4..73acefd 100644 --- a/boards/adafruit_macropad/Cargo.toml +++ b/boards/adafruit_macropad/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0" [dependencies] cortex-m = "0.7.2" -rp2040-hal = { path = "../../rp2040-hal", version = "0.1.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} cortex-m-rt = { version = "0.6.14", optional = true } [features] diff --git a/boards/feather_rp2040/Cargo.toml b/boards/feather_rp2040/Cargo.toml index 22c9973..a5d694b 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.1.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} cortex-m-rt = { version = "0.6.14", optional = true } [features] diff --git a/boards/pico/Cargo.toml b/boards/pico/Cargo.toml index 0d6cef4..37da581 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.1.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} cortex-m-rt = { version = "0.6.14", optional = true } embedded-time = "0.12.0" diff --git a/boards/pico_explorer/Cargo.toml b/boards/pico_explorer/Cargo.toml index c2413ee..432b10b 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.1.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} cortex-m-rt = { version="0.6.14", 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 2fef519..eb99fcb 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.1.0" } +rp2040-hal = { path = "../../rp2040-hal", version = "0.2.0"} cortex-m-rt = { version = "0.6.14", optional = true } [features] diff --git a/rp2040-hal/Cargo.toml b/rp2040-hal/Cargo.toml index a35728c..773f47f 100644 --- a/rp2040-hal/Cargo.toml +++ b/rp2040-hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rp2040-hal" -version = "0.1.0" +version = "0.2.0" authors = ["evan "] edition = "2018" homepage = "https://github.com/rp-rs/rp-hal/boards/pico-bsc" @@ -14,13 +14,13 @@ cortex-m = "0.7.2" embedded-hal = { version = "0.2.5", features=["unproven"] } embedded-time = "0.12.0" nb = "1.0" -rp2040-pac = { git = "https://github.com/rp-rs/rp2040-pac", branch="main" } +rp2040-pac = "0.1.4" paste = "1.0" [dev-dependencies] cortex-m-rt = "0.6.14" panic-halt = "0.2.0" -rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", branch="main" } +rp2040-boot2 = { git = "https://github.com/rp-rs/rp2040-boot2-rs", rev = "67400f600b192e950b58df79ddc9b57ff209ef08" } hd44780-driver = "0.4.0" [features]