From 5198e77710d4c349ea2742bcf92558754e4a4ba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Fita?= <4925040+michalfita@users.noreply.github.com> Date: Wed, 26 Oct 2022 19:42:13 +0100 Subject: [PATCH] Release v0.4.1 --- CHANGELOG.md | 13 ++++++++++++- boards/atsame70_xpro/Cargo.lock | 2 +- boards/atsame70_xpro/Cargo.toml | 2 +- boards/atsamv71_xult/Cargo.lock | 2 +- boards/atsamv71_xult/Cargo.toml | 2 +- hal/Cargo.toml | 2 +- hal/README.md | 2 +- 7 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04ff896a..0d98612e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ ### Changed +### Removed + +### Fixed + +## [v0.4.1] 2022-10-26 + +### Added + +### Changed + - The special-on-reset pins `PB4/5/6/7/12` are now completely unavailable, if the `reconfigurable-system-pins` feature is not enabled. - `Usart` and `Twi` are now only available if the `reconfigurable-system-pins` feature is enabled, as they cannot obtain a valid pin configuration without it. @@ -104,7 +114,8 @@ * hal: Just very simple stuff added * automation script in Python -[Unreleased]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.4.1...HEAD +[v0.4.1]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.4.0...v0.4.1 [v0.4.0]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.3.0...v0.4.0 [v0.3.0]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.2.1...v0.3.0 [v0.2.1]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.2.0...v0.2.1 diff --git a/boards/atsame70_xpro/Cargo.lock b/boards/atsame70_xpro/Cargo.lock index 95450390..9a06c2ad 100644 --- a/boards/atsame70_xpro/Cargo.lock +++ b/boards/atsame70_xpro/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "atsamx7x-hal" -version = "0.4.0" +version = "0.4.1" dependencies = [ "atsame70q21b", "bit-iter", diff --git a/boards/atsame70_xpro/Cargo.toml b/boards/atsame70_xpro/Cargo.toml index 82d60ec1..44940b9e 100644 --- a/boards/atsame70_xpro/Cargo.toml +++ b/boards/atsame70_xpro/Cargo.toml @@ -17,7 +17,7 @@ usbd-serial = "0.1.1" heapless = "0.7" [dependencies.atsamx7x-hal] -version = "0.4.0" +version = "0.4.1" path = "../../hal" features = ["same70q21b-rt", "unproven"] diff --git a/boards/atsamv71_xult/Cargo.lock b/boards/atsamv71_xult/Cargo.lock index 9d00d9a4..64a97252 100644 --- a/boards/atsamv71_xult/Cargo.lock +++ b/boards/atsamv71_xult/Cargo.lock @@ -45,7 +45,7 @@ dependencies = [ [[package]] name = "atsamx7x-hal" -version = "0.4.0" +version = "0.4.1" dependencies = [ "atsamv71q21b", "bit-iter", diff --git a/boards/atsamv71_xult/Cargo.toml b/boards/atsamv71_xult/Cargo.toml index f0f59a14..7c2c0fe8 100644 --- a/boards/atsamv71_xult/Cargo.toml +++ b/boards/atsamv71_xult/Cargo.toml @@ -17,7 +17,7 @@ usbd-serial = "0.1.1" dwt-systick-monotonic = "1.0.0" [dependencies.atsamx7x-hal] -version = "0.4.0" +version = "0.4.1" path = "../../hal" features = ["samv71q21b-rt", "unproven"] diff --git a/hal/Cargo.toml b/hal/Cargo.toml index 0c20fa0e..67a94287 100644 --- a/hal/Cargo.toml +++ b/hal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "atsamx7x-hal" -version = "0.4.0" +version = "0.4.1" # in no particular order authors = [ "Michal Fita ", diff --git a/hal/README.md b/hal/README.md index e8c51ca8..583a68a5 100644 --- a/hal/README.md +++ b/hal/README.md @@ -8,7 +8,7 @@ This crate provides a type-safe API for working with Microchip SAM S70/E70/V70/V For example, if you are using an ATSAMV71Q21B. Add the following to your `Cargo.toml`: ```toml [dependencies] -atsamx7x-hal = { version = "0.3.0", features = [ "samv71q21b-rt", "unproven" ] } +atsamx7x-hal = { version = "0.4.1", features = [ "samv71q21b-rt", "unproven" ] } ``` The `-rt` suffix adds the [`cortex-m-rt`](https://docs.rs/cortex-m-rt/latest/cortex_m_rt/) run-time. `unproven` enables unproven [`embedded-hal`](https://docs.rs/embedded-hal/0.2.7/embedded_hal/) features.