From 3ab17cc2c6b42d2e29df6b23ffadbbf0c765501b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 20:35:29 +0000 Subject: [PATCH] chore: release --- atsamd-hal-macros/CHANGELOG.md | 6 ++++++ atsamd-hal-macros/Cargo.toml | 2 +- boards/atsame54_xpro/CHANGELOG.md | 6 ++++++ boards/atsame54_xpro/Cargo.toml | 4 ++-- boards/feather_m0/CHANGELOG.md | 6 ++++++ boards/feather_m0/Cargo.toml | 4 ++-- boards/feather_m4/CHANGELOG.md | 6 ++++++ boards/feather_m4/Cargo.toml | 4 ++-- boards/metro_m0/CHANGELOG.md | 6 ++++++ boards/metro_m0/Cargo.toml | 4 ++-- boards/metro_m4/CHANGELOG.md | 6 ++++++ boards/metro_m4/Cargo.toml | 4 ++-- boards/pygamer/CHANGELOG.md | 6 ++++++ boards/pygamer/Cargo.toml | 4 ++-- boards/samd11_bare/CHANGELOG.md | 6 ++++++ boards/samd11_bare/Cargo.toml | 4 ++-- hal/CHANGELOG.md | 10 ++++++++++ hal/Cargo.toml | 4 ++-- 18 files changed, 75 insertions(+), 17 deletions(-) diff --git a/atsamd-hal-macros/CHANGELOG.md b/atsamd-hal-macros/CHANGELOG.md index ef9765f1914..933b6711f45 100644 --- a/atsamd-hal-macros/CHANGELOG.md +++ b/atsamd-hal-macros/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.3](https://github.com/atsamd-rs/atsamd/compare/atsamd-hal-macros-0.2.2...atsamd-hal-macros-0.2.3) - 2024-12-05 + +### Other + +- *(atsamd-hal-macros)* Add MSRV ([#798](https://github.com/atsamd-rs/atsamd/pull/798)) + ## [0.2.2](https://github.com/atsamd-rs/atsamd/compare/atsamd-hal-macros-0.2.1...atsamd-hal-macros-0.2.2) - 2024-11-28 ### Added diff --git a/atsamd-hal-macros/Cargo.toml b/atsamd-hal-macros/Cargo.toml index 6cba419b6f0..488150a8104 100644 --- a/atsamd-hal-macros/Cargo.toml +++ b/atsamd-hal-macros/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Tethys Svensson"] name = "atsamd-hal-macros" rust-version = "1.77.2" -version = "0.2.2" +version = "0.2.3" edition = "2021" license = "MIT OR Apache-2.0" categories = ["embedded", "hardware-support", "no-std"] diff --git a/boards/atsame54_xpro/CHANGELOG.md b/boards/atsame54_xpro/CHANGELOG.md index be41b626a3c..30513901229 100644 --- a/boards/atsame54_xpro/CHANGELOG.md +++ b/boards/atsame54_xpro/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1](https://github.com/atsamd-rs/atsamd/compare/atsame54_xpro-0.10.0...atsame54_xpro-0.10.1) - 2024-12-05 + +### Other + +- updated the following local packages: atsamd-hal + ## [0.10.0](https://github.com/atsamd-rs/atsamd/compare/atsame54_xpro-0.9.0...atsame54_xpro-0.10.0) - 2024-11-28 ### Added diff --git a/boards/atsame54_xpro/Cargo.toml b/boards/atsame54_xpro/Cargo.toml index 97410e1da95..ab47bd48b03 100644 --- a/boards/atsame54_xpro/Cargo.toml +++ b/boards/atsame54_xpro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atsame54_xpro" -version = "0.10.0" +version = "0.10.1" authors = [ "Karsten Große ", "John Little " @@ -23,7 +23,7 @@ features = ["critical-section-single-core"] [dependencies.atsamd-hal] path = "../../hal" -version = "0.20.0" +version = "0.20.1" default-features = false [dependencies.usb-device] diff --git a/boards/feather_m0/CHANGELOG.md b/boards/feather_m0/CHANGELOG.md index 49fc8c4f619..df8dd979b03 100644 --- a/boards/feather_m0/CHANGELOG.md +++ b/boards/feather_m0/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.1](https://github.com/atsamd-rs/atsamd/compare/feather_m0-0.17.0...feather_m0-0.17.1) - 2024-12-05 + +### Other + +- updated the following local packages: atsamd-hal + ## [0.17.0](https://github.com/atsamd-rs/atsamd/compare/feather_m0-0.16.0...feather_m0-0.17.0) - 2024-11-28 ### Added diff --git a/boards/feather_m0/Cargo.toml b/boards/feather_m0/Cargo.toml index 67e8d987eb2..bc2184ad880 100644 --- a/boards/feather_m0/Cargo.toml +++ b/boards/feather_m0/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather_m0" -version = "0.17.0" +version = "0.17.1" 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.20.0" +version = "0.20.1" default-features = false [dependencies.cortex-m] diff --git a/boards/feather_m4/CHANGELOG.md b/boards/feather_m4/CHANGELOG.md index 5ef7c2c0db3..3cb51ff4ee7 100644 --- a/boards/feather_m4/CHANGELOG.md +++ b/boards/feather_m4/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.1](https://github.com/atsamd-rs/atsamd/compare/feather_m4-0.15.0...feather_m4-0.15.1) - 2024-12-05 + +### Other + +- updated the following local packages: atsamd-hal + ## [0.15.0](https://github.com/atsamd-rs/atsamd/compare/feather_m4-0.14.0...feather_m4-0.15.0) - 2024-11-28 ### Added diff --git a/boards/feather_m4/Cargo.toml b/boards/feather_m4/Cargo.toml index f10587a5e72..78726e6e38b 100644 --- a/boards/feather_m4/Cargo.toml +++ b/boards/feather_m4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "feather_m4" -version = "0.15.0" +version = "0.15.1" 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.20.0" +version = "0.20.1" default-features = false [dependencies.usb-device] diff --git a/boards/metro_m0/CHANGELOG.md b/boards/metro_m0/CHANGELOG.md index 3be4e7d803d..1f6c0700a41 100644 --- a/boards/metro_m0/CHANGELOG.md +++ b/boards/metro_m0/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.1](https://github.com/atsamd-rs/atsamd/compare/metro_m0-0.17.0...metro_m0-0.17.1) - 2024-12-05 + +### Other + +- updated the following local packages: atsamd-hal + ## [0.17.0](https://github.com/atsamd-rs/atsamd/compare/metro_m0-0.16.0...metro_m0-0.17.0) - 2024-11-28 ### Added diff --git a/boards/metro_m0/Cargo.toml b/boards/metro_m0/Cargo.toml index 1405b8ae676..0e3dda404bf 100644 --- a/boards/metro_m0/Cargo.toml +++ b/boards/metro_m0/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metro_m0" -version = "0.17.0" +version = "0.17.1" 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.20.0" +version = "0.20.1" default-features = false [dependencies.usb-device] diff --git a/boards/metro_m4/CHANGELOG.md b/boards/metro_m4/CHANGELOG.md index 74433209f81..b1b58100155 100644 --- a/boards/metro_m4/CHANGELOG.md +++ b/boards/metro_m4/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.1](https://github.com/atsamd-rs/atsamd/compare/metro_m4-0.16.0...metro_m4-0.16.1) - 2024-12-05 + +### Other + +- updated the following local packages: atsamd-hal + ## [0.16.0](https://github.com/atsamd-rs/atsamd/compare/metro_m4-0.15.0...metro_m4-0.16.0) - 2024-11-28 ### Added diff --git a/boards/metro_m4/Cargo.toml b/boards/metro_m4/Cargo.toml index fe7a1478d1c..203e3db97b1 100644 --- a/boards/metro_m4/Cargo.toml +++ b/boards/metro_m4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "metro_m4" -version = "0.16.0" +version = "0.16.1" 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.20.0" +version = "0.20.1" default-features = false [dependencies.usb-device] diff --git a/boards/pygamer/CHANGELOG.md b/boards/pygamer/CHANGELOG.md index 444d2c067d7..2635f792cc7 100644 --- a/boards/pygamer/CHANGELOG.md +++ b/boards/pygamer/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.1](https://github.com/atsamd-rs/atsamd/compare/pygamer-0.13.0...pygamer-0.13.1) - 2024-12-05 + +### Other + +- updated the following local packages: atsamd-hal + ## [0.13.0](https://github.com/atsamd-rs/atsamd/compare/pygamer-0.12.0...pygamer-0.13.0) - 2024-11-28 ### Added diff --git a/boards/pygamer/Cargo.toml b/boards/pygamer/Cargo.toml index b7388f3a9f5..b16b139633d 100644 --- a/boards/pygamer/Cargo.toml +++ b/boards/pygamer/Cargo.toml @@ -12,7 +12,7 @@ license = "MIT OR Apache-2.0" name = "pygamer" readme = "README.md" repository = "https://github.com/atsamd-rs/atsamd" -version = "0.13.0" +version = "0.13.1" [dependencies] cortex-m = {version = "0.7", features = ["critical-section-single-core"]} @@ -27,7 +27,7 @@ version = "0.7" [dependencies.atsamd-hal] default-features = false path = "../../hal" -version = "0.20.0" +version = "0.20.1" [dependencies.usb-device] optional = true diff --git a/boards/samd11_bare/CHANGELOG.md b/boards/samd11_bare/CHANGELOG.md index fdbb5dbe474..f3759c57926 100644 --- a/boards/samd11_bare/CHANGELOG.md +++ b/boards/samd11_bare/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.1](https://github.com/atsamd-rs/atsamd/compare/samd11_bare-0.13.0...samd11_bare-0.13.1) - 2024-12-05 + +### Other + +- updated the following local packages: atsamd-hal + ## [0.13.0](https://github.com/atsamd-rs/atsamd/compare/samd11_bare-0.12.0...samd11_bare-0.13.0) - 2024-11-28 ### Added diff --git a/boards/samd11_bare/Cargo.toml b/boards/samd11_bare/Cargo.toml index b29de101010..84dfcf9dcb5 100644 --- a/boards/samd11_bare/Cargo.toml +++ b/boards/samd11_bare/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "samd11_bare" -version = "0.13.0" +version = "0.13.1" 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.20.0" +version = "0.20.1" default-features = false [dev-dependencies] diff --git a/hal/CHANGELOG.md b/hal/CHANGELOG.md index 87079bda804..3fda19a42ac 100644 --- a/hal/CHANGELOG.md +++ b/hal/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.20.1](https://github.com/atsamd-rs/atsamd/compare/atsamd-hal-0.20.0...atsamd-hal-0.20.1) - 2024-12-05 + +### Added + +- *(can)* Allow the use of any GCLK with the CAN peripheral ([#797](https://github.com/atsamd-rs/atsamd/pull/797)) + +### Fixed + +- *(pwm)* Fix missing sync of timer ENABLE bit ([#795](https://github.com/atsamd-rs/atsamd/pull/795)) + ## [0.20.0](https://github.com/atsamd-rs/atsamd/compare/atsamd-hal-0.19.0...atsamd-hal-0.20.0) - 2024-11-28 ### Added diff --git a/hal/Cargo.toml b/hal/Cargo.toml index 2e775a4b8d0..4bfe3bbb32b 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.77.2" -version = "0.20.0" +version = "0.20.1" [package.metadata.docs.rs] features = ["samd21g", "samd21g-rt", "usb", "dma", "async"] @@ -31,7 +31,7 @@ features = ["samd21g", "samd21g-rt", "usb", "dma", "async"] [dependencies] aes = "0.7.5" -atsamd-hal-macros = { version = "0.2.2", path = "../atsamd-hal-macros" } +atsamd-hal-macros = { version = "0.2.3", path = "../atsamd-hal-macros" } bitfield = "0.13" bitflags = "2.6.0" cipher = "0.3"