Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 26, 2024
1 parent ef7a1b2 commit 9a716bf
Show file tree
Hide file tree
Showing 40 changed files with 141 additions and 39 deletions.
2 changes: 1 addition & 1 deletion boards/atsame54_xpro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ features = ["critical-section-single-core"]

[dependencies.atsamd-hal]
path = "../../hal"
version = "0.18.1"
version = "0.18.2"
default-features = false

[dependencies.usb-device]
Expand Down
2 changes: 1 addition & 1 deletion boards/feather_m0/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ optional = true

[dependencies.atsamd-hal]
path = "../../hal"
version = "0.18.1"
version = "0.18.2"
default-features = false

[dependencies.cortex-m]
Expand Down
2 changes: 1 addition & 1 deletion boards/feather_m4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ features = ["critical-section-single-core"]

[dependencies.atsamd-hal]
path = "../../hal"
version = "0.18.1"
version = "0.18.2"
default-features = false

[dependencies.usb-device]
Expand Down
2 changes: 1 addition & 1 deletion boards/metro_m0/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ features = ["critical-section-single-core"]

[dependencies.atsamd-hal]
path = "../../hal"
version = "0.18.1"
version = "0.18.2"
default-features = false

[dependencies.usb-device]
Expand Down
2 changes: 1 addition & 1 deletion boards/metro_m4/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ optional = true

[dependencies.atsamd-hal]
path = "../../hal"
version = "0.18.1"
version = "0.18.2"
default-features = false

[dependencies.usb-device]
Expand Down
2 changes: 1 addition & 1 deletion boards/samd11_bare/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ features = ["critical-section-single-core"]

[dependencies.atsamd-hal]
path = "../../hal"
version = "0.18.1"
version = "0.18.2"
default-features = false

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions hal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.18.2](https://github.com/adfernandes/atsamd/compare/atsamd-hal-0.18.1...atsamd-hal-0.18.2) - 2024-10-26

### Other

- updated the following local packages: atsamd11c, atsamd11d, atsamd21e, atsamd21g, atsamd21j, atsamd51g, atsamd51j, atsamd51n, atsamd51p, atsame51g, atsame51j, atsame51n, atsame53j, atsame53n, atsame54n, atsame54p

## [0.18.1](https://github.com/atsamd-rs/atsamd/compare/atsamd-hal-0.18.0...atsamd-hal-0.18.1) - 2024-10-25

### Fixed
Expand Down
34 changes: 17 additions & 17 deletions hal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name = "atsamd-hal"
readme = "README.md"
repository = "https://github.com/atsamd-rs/atsamd"
rust-version = "1.65"
version = "0.18.1"
version = "0.18.2"

[package.metadata.docs.rs]
features = ["samd21g", "samd21g-rt", "usb", "dma"]
Expand Down Expand Up @@ -73,27 +73,27 @@ defmt = {version = "0.3.4", optional = true}
# users should specify a corresponding variant (see below). The variant features
# will select the correct PAC, as well as other configuration features.

atsamd11c = { version = "0.14.0", path = "../pac/atsamd11c", optional = true}
atsamd11d = { version = "0.14.0", path = "../pac/atsamd11d", optional = true}
atsamd11c = { version = "0.14.1", path = "../pac/atsamd11c", optional = true}
atsamd11d = { version = "0.14.1", path = "../pac/atsamd11d", optional = true}

atsamd21e = { version = "0.14.0", path = "../pac/atsamd21e", optional = true}
atsamd21g = { version = "0.14.0", path = "../pac/atsamd21g", optional = true}
atsamd21j = { version = "0.14.0", path = "../pac/atsamd21j", optional = true}
atsamd21e = { version = "0.14.1", path = "../pac/atsamd21e", optional = true}
atsamd21g = { version = "0.14.1", path = "../pac/atsamd21g", optional = true}
atsamd21j = { version = "0.14.1", path = "../pac/atsamd21j", optional = true}

atsamd51g = { version = "0.14.0", path = "../pac/atsamd51g", optional = true}
atsamd51j = { version = "0.14.0", path = "../pac/atsamd51j", optional = true}
atsamd51n = { version = "0.14.0", path = "../pac/atsamd51n", optional = true}
atsamd51p = { version = "0.14.0", path = "../pac/atsamd51p", optional = true}
atsamd51g = { version = "0.14.1", path = "../pac/atsamd51g", optional = true}
atsamd51j = { version = "0.14.1", path = "../pac/atsamd51j", optional = true}
atsamd51n = { version = "0.14.1", path = "../pac/atsamd51n", optional = true}
atsamd51p = { version = "0.14.1", path = "../pac/atsamd51p", optional = true}

atsame51g = { version = "0.14.0", path = "../pac/atsame51g", optional = true}
atsame51j = { version = "0.14.0", path = "../pac/atsame51j", optional = true}
atsame51n = { version = "0.14.0", path = "../pac/atsame51n", optional = true}
atsame51g = { version = "0.14.1", path = "../pac/atsame51g", optional = true}
atsame51j = { version = "0.14.1", path = "../pac/atsame51j", optional = true}
atsame51n = { version = "0.14.1", path = "../pac/atsame51n", optional = true}

atsame53j = { version = "0.14.0", path = "../pac/atsame53j", optional = true}
atsame53n = { version = "0.14.0", path = "../pac/atsame53n", optional = true}
atsame53j = { version = "0.14.1", path = "../pac/atsame53j", optional = true}
atsame53n = { version = "0.14.1", path = "../pac/atsame53n", optional = true}

atsame54n = { version = "0.14.0", path = "../pac/atsame54n", optional = true}
atsame54p = { version = "0.14.0", path = "../pac/atsame54p", optional = true}
atsame54n = { version = "0.14.1", path = "../pac/atsame54n", optional = true}
atsame54p = { version = "0.14.1", path = "../pac/atsame54p", optional = true}

#===============================================================================
# Features
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd11c/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd11c-0.14.0...atsamd11c-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd11c-0.13.0...atsamd11c-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd11c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd11c"
description = "Peripheral access API for ATSAMD11C microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Jesse Braham <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd11d/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd11d-0.14.0...atsamd11d-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd11d-0.13.0...atsamd11d-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd11d/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd11d"
description = "Peripheral access API for ATSAMD11D microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Victor Koenders <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd21e/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd21e-0.14.0...atsamd21e-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd21e-0.13.0...atsamd21e-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd21e/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd21e"
description = "Peripheral access API for ATSAMD21E microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Wez Furlong <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd21g/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd21g-0.14.0...atsamd21g-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd21g-0.13.0...atsamd21g-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd21g/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd21g"
description = "Peripheral access API for ATSAMD21G microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Wez Furlong <[email protected]>", "Blake Johnson <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd21j/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd21j-0.14.0...atsamd21j-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd21j-0.13.0...atsamd21j-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd21j/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd21j"
description = "Peripheral access API for ATSAMD21J microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Wez Furlong <[email protected]>", "Paul Sajna <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd51g/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd51g-0.14.0...atsamd51g-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd51g-0.13.0...atsamd51g-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd51g/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd51g"
description = "Peripheral access API for ATSAMD51G microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Wez Furlong <[email protected]>", "Tony Arcieri <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd51j/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd51j-0.14.0...atsamd51j-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd51j-0.13.0...atsamd51j-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd51j/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd51j"
description = "Peripheral access API for ATSAMD51J microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Wez Furlong <[email protected]>", "Paul Sajna <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd51n/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd51n-0.14.0...atsamd51n-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd51n-0.13.0...atsamd51n-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd51n/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd51n"
description = "Peripheral access API for ATSAMD51N microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = [
"Wez Furlong <[email protected]>",
"Paul Sajna <[email protected]>",
Expand Down
6 changes: 6 additions & 0 deletions pac/atsamd51p/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsamd51p-0.14.0...atsamd51p-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsamd51p-0.13.0...atsamd51p-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsamd51p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsamd51p"
description = "Peripheral access API for ATSAMD51P microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Jesse Braham <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsame51g/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsame51g-0.14.0...atsame51g-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsame51g-0.13.0...atsame51g-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsame51g/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsame51g"
description = "Peripheral access API for ATSAME51G microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Karsten Große <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsame51j/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsame51j-0.14.0...atsame51j-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsame51j-0.13.0...atsame51j-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsame51j/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsame51j"
description = "Peripheral access API for ATSAME51J microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Karsten Große <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsame51n/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsame51n-0.14.0...atsame51n-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsame51n-0.13.0...atsame51n-0.14.0) - 2024-10-17

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pac/atsame51n/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "atsame51n"
description = "Peripheral access API for ATSAME51N microcontrollers (generated using svd2rust)"
version = "0.14.0"
version = "0.14.1"
authors = ["Karsten Große <[email protected]>"]
keywords = ["no-std", "arm", "cortex-m"]
categories = ["embedded", "hardware-support", "no-std"]
Expand Down
6 changes: 6 additions & 0 deletions pac/atsame53j/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1](https://github.com/adfernandes/atsamd/compare/atsame53j-0.14.0...atsame53j-0.14.1) - 2024-10-26

### Other

- *(pacs)* Update to svd2rust 0.33.5 and re-generate PACs ([#774](https://github.com/adfernandes/atsamd/pull/774))

## [0.14.0](https://github.com/atsamd-rs/atsamd/compare/atsame53j-0.13.0...atsame53j-0.14.0) - 2024-10-17

### Changed
Expand Down
Loading

0 comments on commit 9a716bf

Please sign in to comment.