Skip to content

Commit 1e3064d

Browse files
committed
bump msrv
1 parent 1522bc1 commit 1e3064d

File tree

11 files changed

+15
-11
lines changed

11 files changed

+15
-11
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.56.0)",
6+
"build (1.58.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.56.0, stable ]
15+
rust: [ 1.58.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.56.0 and up. It *might*
13+
This crate is guaranteed to compile on stable Rust 1.58.0 and up. It *might*
1414
compile with older versions but that may change in any new patch release.
1515

1616
## License

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.56.0"
10+
rust-version = "1.58.0"
1111
version = "0.14.3"
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.56.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.58.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
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
- Bump MSRV to 1.58.0
11+
1012
## [v0.14.1] - 2022-10-23
1113

1214
- Update to `svd-rs` 0.14.1

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.56.0"
13+
rust-version = "1.58.0"
1414
version = "0.14.1"
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.56.0 and up. It *might*
16+
This crate is guaranteed to compile on stable Rust 1.58.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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## Unreleased
99

10+
- Bump MSRV to 1.58.0
11+
1012
## [v0.14.2] - 2023-04-04
1113

1214
- Add support of `a-Z` for `dimIndex`
1315
- Add `name`, `description`, `address_offset` for `RegisterCluster`
1416

1517
## [v0.14.1] - 2022-10-23
1618

17-
- (De)serialize `dimIndex` (from)to string
19+
- (De)serialize `dimIndex` (from)to string
1820

1921
## [v0.14.0] - 2022-07-19
2022

@@ -63,7 +65,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6365
`header_struct_name` to `PeripheralInfo`, `alternate_cluster` to `ClusterInfo`
6466
- Add `protection` to `RegisterProperties` and `AddressBlock`
6567
- Add `readAction` to `RegisterInfo` and `FieldInfo`
66-
- Add `single` and `array` for `Info` types,
68+
- Add `single` and `array` for `Info` types,
6769
`is_single` and `is_array` for `Peripheral`, `Cluster`, `Register` and `Field`
6870
- Add array support for peripherals
6971

svd-rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
name = "svd-rs"
1010
repository = "https://github.com/rust-embedded/svd"
1111
edition = "2021"
12-
rust-version = "1.56.0"
12+
rust-version = "1.58.0"
1313
version = "0.14.2"
1414
readme = "README.md"
1515

0 commit comments

Comments
 (0)