diff --git a/boards/atsame54_xpro/CHANGELOG.md b/boards/atsame54_xpro/CHANGELOG.md index c9fb5dc7e07..dc3d20a027e 100644 --- a/boards/atsame54_xpro/CHANGELOG.md +++ b/boards/atsame54_xpro/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v0.7.0 + - Implement `embedded-hal` `1.0` for GPIO, SPI, I2C, UART and fix examples - Update the PACs to svd2rust 0.30.2. diff --git a/boards/atsame54_xpro/Cargo.toml b/boards/atsame54_xpro/Cargo.toml index ad427bcce31..608afad2705 100644 --- a/boards/atsame54_xpro/Cargo.toml +++ b/boards/atsame54_xpro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atsame54_xpro" -version = "0.6.0" +version = "0.7.0" authors = [ "Karsten Große ", "John Little " @@ -23,7 +23,7 @@ features = ["critical-section-single-core"] [dependencies.atsamd-hal] path = "../../hal" -version = "0.16.0" +version = "0.17.0" default-features = false [dependencies.usb-device] diff --git a/boards/feather_m0/CHANGELOG.md b/boards/feather_m0/CHANGELOG.md index 1b8a61f6aae..f53f51d5c0f 100644 --- a/boards/feather_m0/CHANGELOG.md +++ b/boards/feather_m0/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v0.14.0 + - Implement `embedded-hal` `1.0` for GPIO, SPI, I2C, UART and fix examples - Update the PACs to svd2rust 0.30.2. diff --git a/boards/feather_m0/Cargo.toml b/boards/feather_m0/Cargo.toml index e1408fb8562..c5ddced9217 100644 --- a/boards/feather_m0/Cargo.toml +++ b/boards/feather_m0/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather_m0" -version = "0.13.0" +version = "0.14.0" authors = ["Ben Bergman "] description = "Board Support crate for the Adafruit Feather M0" keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] @@ -21,7 +21,7 @@ optional = true [dependencies.atsamd-hal] path = "../../hal" -version = "0.16.0" +version = "0.17.0" default-features = false [dependencies.cortex-m] diff --git a/boards/feather_m4/CHANGELOG.md b/boards/feather_m4/CHANGELOG.md index e9282103a41..c5f5504a33b 100644 --- a/boards/feather_m4/CHANGELOG.md +++ b/boards/feather_m4/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v0.12.0 + - Implement `embedded-hal` `1.0` for GPIO, SPI, I2C, UART and fix examples - Update the PACs to svd2rust 0.30.2. diff --git a/boards/feather_m4/Cargo.toml b/boards/feather_m4/Cargo.toml index 03ea190917f..4fcd5a6bbe8 100644 --- a/boards/feather_m4/Cargo.toml +++ b/boards/feather_m4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather_m4" -version = "0.11.0" +version = "0.12.0" edition = "2021" authors = ["Theodore DeRego "] description = "Board Support crate for the Adafruit Feather M4" @@ -25,7 +25,7 @@ features = ["critical-section-single-core"] [dependencies.atsamd-hal] path = "../../hal" -version = "0.16.0" +version = "0.17.0" default-features = false [dependencies.usb-device] diff --git a/boards/metro_m0/CHANGELOG.md b/boards/metro_m0/CHANGELOG.md index 42791da46be..6873640e48e 100644 --- a/boards/metro_m0/CHANGELOG.md +++ b/boards/metro_m0/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v0.14.0 + - Implement `embedded-hal` `1.0` for GPIO, SPI, I2C, UART and fix examples - Update the PACs to svd2rust 0.30.2. diff --git a/boards/metro_m0/Cargo.toml b/boards/metro_m0/Cargo.toml index bbcaa5a9e0d..6181434f178 100644 --- a/boards/metro_m0/Cargo.toml +++ b/boards/metro_m0/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metro_m0" -version = "0.13.0" +version = "0.14.0" authors = ["Wez Furlong "] description = "Board Support crate for the Adafruit Metro M0" keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] @@ -24,7 +24,7 @@ features = ["critical-section-single-core"] [dependencies.atsamd-hal] path = "../../hal" -version = "0.16.0" +version = "0.17.0" default-features = false [dependencies.usb-device] diff --git a/boards/metro_m4/CHANGELOG.md b/boards/metro_m4/CHANGELOG.md index 06e86ef25f9..8bd600ac3d6 100644 --- a/boards/metro_m4/CHANGELOG.md +++ b/boards/metro_m4/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v0.13.0 + - Implement `embedded-hal` `1.0` for GPIO, SPI, I2C, UART and fix examples - Update the PACs to svd2rust 0.30.2. diff --git a/boards/metro_m4/Cargo.toml b/boards/metro_m4/Cargo.toml index 7f2bcd0d64f..b14f32fed55 100644 --- a/boards/metro_m4/Cargo.toml +++ b/boards/metro_m4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metro_m4" -version = "0.12.0" +version = "0.13.0" authors = ["Paul Sajna ", "Wez Furlong "] description = "Board Support crate for the Adafruit Metro M4" keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] @@ -20,7 +20,7 @@ optional = true [dependencies.atsamd-hal] path = "../../hal" -version = "0.16.0" +version = "0.17.0" default-features = false [dependencies.usb-device] diff --git a/boards/samd11_bare/CHANGELOG.md b/boards/samd11_bare/CHANGELOG.md index 350c0846ed9..6000895947c 100644 --- a/boards/samd11_bare/CHANGELOG.md +++ b/boards/samd11_bare/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased +# v0.10.0 + - Implement `embedded-hal` `1.0` for GPIO, SPI, I2C, UART and fix examples - Update the PACs to svd2rust 0.30.2. diff --git a/boards/samd11_bare/Cargo.toml b/boards/samd11_bare/Cargo.toml index 068aaea8c1a..2499d72500e 100644 --- a/boards/samd11_bare/Cargo.toml +++ b/boards/samd11_bare/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "samd11_bare" -version = "0.9.0" +version = "0.10.0" authors = ["Jesse Braham "] description = "Support crate for the ATSAMD11C" keywords = ["no-std", "arm", "cortex-m", "embedded-hal"] @@ -23,7 +23,7 @@ features = ["critical-section-single-core"] [dependencies.atsamd-hal] path = "../../hal" -version = "0.16.0" +version = "0.17.0" default-features = false [dev-dependencies] diff --git a/hal/CHANGELOG.md b/hal/CHANGELOG.md index beebaa75ba6..10cd8c61267 100644 --- a/hal/CHANGELOG.md +++ b/hal/CHANGELOG.md @@ -1,5 +1,7 @@ # Unreleased Changes +# v0.17.0 + - Remove `unproven` Cargo feature - Implement `embedded-hal` `1.0` for GPIO, SPI, I2C, UART, delay and PWM - CI/CD pipeline now uses `cargo clippy` instead of `cargo build` and denies clippy warnings by default diff --git a/hal/Cargo.toml b/hal/Cargo.toml index dced5199a59..d793d3999c9 100644 --- a/hal/Cargo.toml +++ b/hal/Cargo.toml @@ -20,7 +20,7 @@ name = "atsamd-hal" readme = "README.md" repository = "https://github.com/atsamd-rs/atsamd" rust-version = "1.65" -version = "0.16.0" +version = "0.17.0" [package.metadata.docs.rs] features = ["samd21g", "samd21g-rt", "usb", "dma"]