Skip to content

Commit 5198e77

Browse files
committed
Release v0.4.1
1 parent 8342e73 commit 5198e77

File tree

7 files changed

+18
-7
lines changed

7 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66

77
### Changed
88

9+
### Removed
10+
11+
### Fixed
12+
13+
## [v0.4.1] 2022-10-26
14+
15+
### Added
16+
17+
### Changed
18+
919
- The special-on-reset pins `PB4/5/6/7/12` are now completely unavailable, if the `reconfigurable-system-pins` feature is not enabled.
1020
- `Usart<Usart1>` and `Twi<TwiHS1>` are now only available if the `reconfigurable-system-pins` feature is enabled, as they cannot obtain a valid pin configuration without it.
1121

@@ -104,7 +114,8 @@
104114
* hal: Just very simple stuff added
105115
* automation script in Python
106116

107-
[Unreleased]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.4.0...HEAD
117+
[Unreleased]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.4.1...HEAD
118+
[v0.4.1]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.4.0...v0.4.1
108119
[v0.4.0]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.3.0...v0.4.0
109120
[v0.3.0]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.2.1...v0.3.0
110121
[v0.2.1]: https://github.com/atsams-rs/atsamx7x-rust/compare/v0.2.0...v0.2.1

boards/atsame70_xpro/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

boards/atsame70_xpro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ usbd-serial = "0.1.1"
1717
heapless = "0.7"
1818

1919
[dependencies.atsamx7x-hal]
20-
version = "0.4.0"
20+
version = "0.4.1"
2121
path = "../../hal"
2222
features = ["same70q21b-rt", "unproven"]
2323

boards/atsamv71_xult/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

boards/atsamv71_xult/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ usbd-serial = "0.1.1"
1717
dwt-systick-monotonic = "1.0.0"
1818

1919
[dependencies.atsamx7x-hal]
20-
version = "0.4.0"
20+
version = "0.4.1"
2121
path = "../../hal"
2222
features = ["samv71q21b-rt", "unproven"]
2323

hal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atsamx7x-hal"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
# in no particular order
55
authors = [
66
"Michal Fita <michal.fita@gmail.com>",

hal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This crate provides a type-safe API for working with Microchip SAM S70/E70/V70/V
88
For example, if you are using an ATSAMV71Q21B. Add the following to your `Cargo.toml`:
99
```toml
1010
[dependencies]
11-
atsamx7x-hal = { version = "0.3.0", features = [ "samv71q21b-rt", "unproven" ] }
11+
atsamx7x-hal = { version = "0.4.1", features = [ "samv71q21b-rt", "unproven" ] }
1212
```
1313

1414
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.

0 commit comments

Comments
 (0)