Skip to content

Commit 78e584d

Browse files
authored
Merge pull request #299 from jannic-dev-forks/msrv-1.84.0
Set MSRV to 1.84 and set resolver = 3
2 parents ce317cd + 5649675 commit 78e584d

12 files changed

Lines changed: 16 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- rust: nightly
3030
experimental: true
3131
# MSRV
32-
- rust: 1.70.0
32+
- rust: 1.84.0
3333
name: "MSRV"
3434
steps:
3535
- name: Checkout repository

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ members = [
55
"svd-encoder",
66
"tests",
77
]
8-
resolver = "2"
8+
resolver = "3"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It consists of:
1010

1111
## Minimum Supported Rust Version (MSRV)
1212

13-
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
13+
This crate is guaranteed to compile on stable Rust 1.84.0 and up. It *might*
1414
compile with older versions but that may change in any new patch release.
1515

1616
## License

svd-encoder/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
## [Unreleased]
99

1010
- Pin `indexmap` to `2.11.4` to support our MSRV
11+
- Bump MSRV to 1.84.0
12+
- Set `resolver = "3"`, which implies `resolver.incompatible-rust-versions = "fallback"`
1113

1214
## [v0.14.7] - 2025-03-11
1315

svd-encoder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
77
name = "svd-encoder"
88
repository = "https://github.com/rust-embedded/svd"
99
edition = "2021"
10-
rust-version = "1.70.0"
10+
rust-version = "1.84.0"
1111
version = "0.14.7"
1212
readme = "README.md"
1313

svd-encoder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].
1313

1414
## Minimum Supported Rust Version (MSRV)
1515

16-
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.84.0 and up. It *might*
1717
compile with older versions but that may change in any new patch release.
1818

1919
## License

svd-parser/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
## [Unreleased]
99

1010
- Add `Target` enum to `Config` and make `vendorSystickConfig` only required for ARM.
11+
- Bump MSRV to 1.84.0
12+
- Set `resolver = "3"`, which implies `resolver.incompatible-rust-versions = "fallback"`
1113

1214
## [v0.14.9] - 2025-03-11
1315

svd-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
1010
name = "svd-parser"
1111
repository = "https://github.com/rust-embedded/svd"
1212
edition = "2021"
13-
rust-version = "1.70.0"
13+
rust-version = "1.84.0"
1414
version = "0.14.9"
1515
readme = "README.md"
1616

svd-parser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].
1313

1414
## Minimum Supported Rust Version (MSRV)
1515

16-
This crate is guaranteed to compile on stable Rust 1.70.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.84.0 and up. It *might*
1717
compile with older versions but that may change in any new patch release.
1818

1919
## License

svd-rs/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
- Bump MSRV to 1.84.0
11+
- Set `resolver = "3"`, which implies `resolver.incompatible-rust-versions = "fallback"`
12+
1013
## [v0.14.12] - 2025-03-11
1114

1215
- Bump MSRV to 1.70.0

0 commit comments

Comments
 (0)