Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump 'regex', bump MSRV. #258

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- rust: nightly
experimental: true
# MSRV
- rust: 1.61.0
- rust: 1.65.0
name: "MSRV"
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ It consists of:

## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.61.0 and up. It *might*
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
compile with older versions but that may change in any new patch release.

## License
Expand Down
2 changes: 2 additions & 0 deletions svd-encoder/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

- Bump MSRV to 1.65.0

## [v0.14.3] - 2023-11-15

- Bump `svd-rs` to 0.14.4
Expand Down
2 changes: 1 addition & 1 deletion svd-encoder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
name = "svd-encoder"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.61.0"
rust-version = "1.65.0"
version = "0.14.4"
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion svd-encoder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].

## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.61.0 and up. It *might*
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
compile with older versions but that may change in any new patch release.

## License
Expand Down
2 changes: 2 additions & 0 deletions svd-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

- Bump MSRV to 1.65.0

## [v0.14.5] - 2024-01-03

- Bump MSRV to 1.61.0
Expand Down
2 changes: 1 addition & 1 deletion svd-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
name = "svd-parser"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.61.0"
rust-version = "1.65.0"
version = "0.14.5"
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion svd-parser/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].

## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.61.0 and up. It *might*
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
compile with older versions but that may change in any new patch release.

## License
Expand Down
3 changes: 3 additions & 0 deletions svd-rs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

- Bump MSRV to 1.65.0
- Bump `regex` to 1.10

## [v0.14.7] - 2024-01-03

- Bump MSRV to 1.61.0
Expand Down
4 changes: 2 additions & 2 deletions svd-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
name = "svd-rs"
repository = "https://github.com/rust-embedded/svd"
edition = "2021"
rust-version = "1.61.0"
rust-version = "1.65.0"
version = "0.14.7"
readme = "README.md"

Expand All @@ -20,7 +20,7 @@ derive-from = []
thiserror = "1.0.31"

[dependencies.regex]
version = "=1.9.6"
version = "1.10"

[dependencies.once_cell]
version = "1.17.2"
Expand Down
2 changes: 1 addition & 1 deletion svd-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This project is developed and maintained by the [Tools team][team].

## Minimum Supported Rust Version (MSRV)

This crate is guaranteed to compile on stable Rust 1.61.0 and up. It *might*
This crate is guaranteed to compile on stable Rust 1.65.0 and up. It *might*
compile with older versions but that may change in any new patch release.

## License
Expand Down