Skip to content

Commit 08c99ab

Browse files
committed
chore: bump MSRV to 1.56.0 (2021)
1 parent 3f400ab commit 08c99ab

File tree

13 files changed

+20
-12
lines changed

13 files changed

+20
-12
lines changed

.github/bors.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ delete_merged_branches = true
33
required_approvals = 1
44
timeout_sec = 14400
55
status = [
6-
"build (1.46.0)",
6+
"build (1.56.0)",
77
"build (stable)",
88
"test",
99
"test-strict",

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
continue-on-error: ${{ matrix.experimental || false }}
1313
strategy:
1414
matrix:
15-
rust: [ 1.46.0, stable ]
15+
rust: [ 1.56.0, stable ]
1616
include:
1717
# Test nightly but don't fail the build.
1818
- rust: nightly

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.46.0 and up. It *might*
13+
This crate is guaranteed to compile on stable Rust 1.56.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
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
- Bump MSRV to 1.56.0 (2021)
11+
1012
## [v0.13.1] - 2022-02-12
1113

1214
- Encode "dimIndex" ranges

svd-encoder/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,13 @@ keywords = ["CMSIS", "SVD", "encoder"]
88
license = "MIT OR Apache-2.0"
99
name = "svd-encoder"
1010
repository = "https://github.com/rust-embedded/svd"
11-
edition = "2018"
11+
edition = "2021"
12+
rust-version = "1.56.0"
1213
version = "0.13.1"
1314
readme = "README.md"
1415

1516
[dependencies]
16-
svd-rs = { version = "0.13.1", path = "../svd-rs"}
17+
svd-rs = { version = "0.13.1", path = "../svd-rs" }
1718
thiserror = "1.0.30"
1819

1920
[dependencies.xmltree]

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.46.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.56.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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
## Unreleased
99

1010
- Fix parsing `xs:noNamespaceSchemaLocation`
11+
- Bump MSRV to 1.56.0 (2021)
1112

1213
## [v0.13.4] - 2022-05-13
1314

svd-parser/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ keywords = ["CMSIS", "SVD", "parser"]
99
license = "MIT OR Apache-2.0"
1010
name = "svd-parser"
1111
repository = "https://github.com/rust-embedded/svd"
12-
edition = "2018"
12+
edition = "2021"
13+
rust-version = "1.56.0"
1314
version = "0.13.4"
1415
readme = "README.md"
1516

@@ -18,7 +19,7 @@ derive-from = ["svd-rs/derive-from"]
1819
expand = ["derive-from"]
1920

2021
[dependencies]
21-
svd-rs = { version = "0.13.2", path = "../svd-rs"}
22+
svd-rs = { version = "0.13.2", path = "../svd-rs" }
2223
roxmltree = "0.14.1"
2324
anyhow = "1.0.45"
2425
thiserror = "1.0.30"

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.46.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.56.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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
- Bump MSRV to 1.56.0 (2021)
11+
1012
## [v0.13.2] - 2022-04-12
1113

1214
- Fix `schema_version` deserialization

0 commit comments

Comments
 (0)