Skip to content

Commit

Permalink
Release v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michalfita committed Oct 26, 2022
1 parent 8342e73 commit 5198e77
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 7 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<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.

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion boards/atsame70_xpro/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion boards/atsame70_xpro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion boards/atsamv71_xult/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion boards/atsamv71_xult/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atsamx7x-hal"
version = "0.4.0"
version = "0.4.1"
# in no particular order
authors = [
"Michal Fita <michal.fita@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion hal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5198e77

Please sign in to comment.