diff --git a/CHANGELOG.md b/CHANGELOG.md index 04ff896..0d98612 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 9545039..9a06c2a 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 82d60ec..44940b9 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 9d00d9a..64a9725 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 f0f59a1..7c2c0fe 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 0c20fa0..67a9428 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 e8c51ca..583a68a 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.