Skip to content

Commit d460b68

Browse files
chore: release v0.14.2 (#899)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1c8dca1 commit d460b68

File tree

33 files changed

+128
-32
lines changed

33 files changed

+128
-32
lines changed

hal/Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -81,27 +81,27 @@ rtic-time = {version = "2.0", optional = true}
8181
# users should specify a corresponding variant (see below). The variant features
8282
# will select the correct PAC, as well as other configuration features.
8383

84-
atsamd11c = {version = "0.14.1", path = "../pac/atsamd11c", optional = true}
85-
atsamd11d = {version = "0.14.1", path = "../pac/atsamd11d", optional = true}
84+
atsamd11c = { version = "0.14.2", path = "../pac/atsamd11c", optional = true}
85+
atsamd11d = { version = "0.14.2", path = "../pac/atsamd11d", optional = true}
8686

87-
atsamd21e = {version = "0.14.1", path = "../pac/atsamd21e", optional = true}
88-
atsamd21g = {version = "0.14.1", path = "../pac/atsamd21g", optional = true}
89-
atsamd21j = {version = "0.14.1", path = "../pac/atsamd21j", optional = true}
87+
atsamd21e = { version = "0.14.2", path = "../pac/atsamd21e", optional = true}
88+
atsamd21g = { version = "0.14.2", path = "../pac/atsamd21g", optional = true}
89+
atsamd21j = { version = "0.14.2", path = "../pac/atsamd21j", optional = true}
9090

91-
atsamd51g = {version = "0.14.1", path = "../pac/atsamd51g", optional = true}
92-
atsamd51j = {version = "0.14.1", path = "../pac/atsamd51j", optional = true}
93-
atsamd51n = {version = "0.14.1", path = "../pac/atsamd51n", optional = true}
94-
atsamd51p = {version = "0.14.1", path = "../pac/atsamd51p", optional = true}
91+
atsamd51g = { version = "0.14.2", path = "../pac/atsamd51g", optional = true}
92+
atsamd51j = { version = "0.14.2", path = "../pac/atsamd51j", optional = true}
93+
atsamd51n = { version = "0.14.2", path = "../pac/atsamd51n", optional = true}
94+
atsamd51p = { version = "0.14.2", path = "../pac/atsamd51p", optional = true}
9595

96-
atsame51g = {version = "0.14.1", path = "../pac/atsame51g", optional = true}
97-
atsame51j = {version = "0.14.1", path = "../pac/atsame51j", optional = true}
98-
atsame51n = {version = "0.14.1", path = "../pac/atsame51n", optional = true}
96+
atsame51g = { version = "0.14.2", path = "../pac/atsame51g", optional = true}
97+
atsame51j = { version = "0.14.2", path = "../pac/atsame51j", optional = true}
98+
atsame51n = { version = "0.14.2", path = "../pac/atsame51n", optional = true}
9999

100-
atsame53j = {version = "0.14.1", path = "../pac/atsame53j", optional = true}
101-
atsame53n = {version = "0.14.1", path = "../pac/atsame53n", optional = true}
100+
atsame53j = { version = "0.14.2", path = "../pac/atsame53j", optional = true}
101+
atsame53n = { version = "0.14.2", path = "../pac/atsame53n", optional = true}
102102

103-
atsame54n = {version = "0.14.1", path = "../pac/atsame54n", optional = true}
104-
atsame54p = {version = "0.14.1", path = "../pac/atsame54p", optional = true}
103+
atsame54n = { version = "0.14.2", path = "../pac/atsame54n", optional = true}
104+
atsame54p = { version = "0.14.2", path = "../pac/atsame54p", optional = true}
105105

106106
#===============================================================================
107107
# Features

pac/atsamd11c/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.14.2](https://github.com/atsamd-rs/atsamd/compare/atsamd11c-0.14.1...atsamd11c-0.14.2) - 2025-06-20
11+
12+
### Other
13+
14+
- Temporarily allow `mismatched_lifetime_syntaxes` lint in PACs
15+
1016
## [0.14.1](https://github.com/atsamd-rs/atsamd/compare/atsamd11c-0.14.0...atsamd11c-0.14.1) - 2024-10-30
1117

1218
### Other

pac/atsamd11c/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "atsamd11c"
33
description = "Peripheral access API for ATSAMD11C microcontrollers (generated using svd2rust)"
4-
version = "0.14.1"
4+
version = "0.14.2"
55
authors = ["Jesse Braham <[email protected]>"]
66
keywords = ["no-std", "arm", "cortex-m"]
77
categories = ["embedded", "hardware-support", "no-std"]

pac/atsamd11d/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.14.2](https://github.com/atsamd-rs/atsamd/compare/atsamd11d-0.14.1...atsamd11d-0.14.2) - 2025-06-20
11+
12+
### Other
13+
14+
- Temporarily allow `mismatched_lifetime_syntaxes` lint in PACs
15+
1016
## [0.14.1](https://github.com/atsamd-rs/atsamd/compare/atsamd11d-0.14.0...atsamd11d-0.14.1) - 2024-10-30
1117

1218
### Other

pac/atsamd11d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "atsamd11d"
33
description = "Peripheral access API for ATSAMD11D microcontrollers (generated using svd2rust)"
4-
version = "0.14.1"
4+
version = "0.14.2"
55
authors = ["Victor Koenders <[email protected]>"]
66
keywords = ["no-std", "arm", "cortex-m"]
77
categories = ["embedded", "hardware-support", "no-std"]

pac/atsamd21e/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.14.2](https://github.com/atsamd-rs/atsamd/compare/atsamd21e-0.14.1...atsamd21e-0.14.2) - 2025-06-20
11+
12+
### Other
13+
14+
- Temporarily allow `mismatched_lifetime_syntaxes` lint in PACs
15+
1016
## [0.14.1](https://github.com/atsamd-rs/atsamd/compare/atsamd21e-0.14.0...atsamd21e-0.14.1) - 2024-10-30
1117

1218
### Other

pac/atsamd21e/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "atsamd21e"
33
description = "Peripheral access API for ATSAMD21E microcontrollers (generated using svd2rust)"
4-
version = "0.14.1"
4+
version = "0.14.2"
55
authors = ["Wez Furlong <[email protected]>"]
66
keywords = ["no-std", "arm", "cortex-m"]
77
categories = ["embedded", "hardware-support", "no-std"]

pac/atsamd21g/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.14.2](https://github.com/atsamd-rs/atsamd/compare/atsamd21g-0.14.1...atsamd21g-0.14.2) - 2025-06-20
11+
12+
### Other
13+
14+
- Temporarily allow `mismatched_lifetime_syntaxes` lint in PACs
15+
1016
## [0.14.1](https://github.com/atsamd-rs/atsamd/compare/atsamd21g-0.14.0...atsamd21g-0.14.1) - 2024-10-30
1117

1218
### Other

pac/atsamd21g/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "atsamd21g"
33
description = "Peripheral access API for ATSAMD21G microcontrollers (generated using svd2rust)"
4-
version = "0.14.1"
4+
version = "0.14.2"
55
authors = ["Wez Furlong <[email protected]>", "Blake Johnson <[email protected]>"]
66
keywords = ["no-std", "arm", "cortex-m"]
77
categories = ["embedded", "hardware-support", "no-std"]

pac/atsamd21j/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.14.2](https://github.com/atsamd-rs/atsamd/compare/atsamd21j-0.14.1...atsamd21j-0.14.2) - 2025-06-20
11+
12+
### Other
13+
14+
- Temporarily allow `mismatched_lifetime_syntaxes` lint in PACs
15+
1016
## [0.14.1](https://github.com/atsamd-rs/atsamd/compare/atsamd21j-0.14.0...atsamd21j-0.14.1) - 2024-10-30
1117

1218
### Other

0 commit comments

Comments
 (0)