From 0d61c2f88833d57d08f340072f1a493e683af4e0 Mon Sep 17 00:00:00 2001 From: Justin Beaurivage Date: Thu, 17 Oct 2024 16:03:59 -0400 Subject: [PATCH] atsamd-hal-macros should be a breaking change --- atsamd-hal-macros/CHANGELOG.md | 8 ++++++-- atsamd-hal-macros/Cargo.toml | 2 +- hal/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/atsamd-hal-macros/CHANGELOG.md b/atsamd-hal-macros/CHANGELOG.md index c753c320c33..b0b9d2162c4 100644 --- a/atsamd-hal-macros/CHANGELOG.md +++ b/atsamd-hal-macros/CHANGELOG.md @@ -7,8 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.1.1](https://github.com/atsamd-rs/atsamd/compare/atsamd-hal-macros-0.1.0...atsamd-hal-macros-0.1.1) - 2024-10-17 +## [0.1.1](https://github.com/atsamd-rs/atsamd/compare/atsamd-hal-macros-0.1.0...atsamd-hal-macros-0.2.0) - 2024-10-17 + +### Removed + +- **[breaking]**: SAMD51G: remove support for I2S peripheral ([#735](https://github.com/atsamd-rs/atsamd/pull/735)) ### Fixed -- Remove statement excluding samd51j from i2s peripheral ([#735](https://github.com/atsamd-rs/atsamd/pull/735)) +- SAMD51J: Add support for I2S peripheral ([#735](https://github.com/atsamd-rs/atsamd/pull/735)) diff --git a/atsamd-hal-macros/Cargo.toml b/atsamd-hal-macros/Cargo.toml index 6eb8a50b716..9214c459575 100644 --- a/atsamd-hal-macros/Cargo.toml +++ b/atsamd-hal-macros/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Tethys Svensson"] name = "atsamd-hal-macros" -version = "0.1.1" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" categories = ["embedded", "hardware-support", "no-std"] diff --git a/hal/Cargo.toml b/hal/Cargo.toml index 4db3ccac939..365fa3b1e97 100644 --- a/hal/Cargo.toml +++ b/hal/Cargo.toml @@ -31,7 +31,7 @@ features = ["samd21g", "samd21g-rt", "usb", "dma"] [dependencies] aes = "0.7.5" -atsamd-hal-macros = { version = "0.1.1", path = "../atsamd-hal-macros" } +atsamd-hal-macros = { version = "0.2.0", path = "../atsamd-hal-macros" } bitfield = "0.13" bitflags = "2.6.0" cipher = "0.3"