Skip to content

Commit

Permalink
[meta] update MSRV to Rust 1.70
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshowers committed Oct 4, 2023
1 parent fd833cb commit 0f0cea2
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
rust-version: [ 1.66, stable ]
rust-version: [ "1.70", stable ]
fail-fast: false
env:
RUSTFLAGS: -D warnings
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
rust-version: [ 1.66, stable ]
rust-version: [ "1.70", stable ]
fail-fast: false
env:
RUSTFLAGS: -D warnings
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ metadata`](https://doc.rust-lang.org/cargo/commands/cargo-metadata.html) format.

## Minimum supported Rust version

The minimum supported Rust version (MSRV) is **Rust 1.66**.
The minimum supported Rust version (MSRV) is **Rust 1.70**.

While a crate is pre-release status (0.x.x) it may have its MSRV bumped in a patch release. Once a crate has reached
1.x, any MSRV bump will be accompanied with a new minor version.
Expand Down
2 changes: 1 addition & 1 deletion guppy-summaries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude = [
# Readme template that doesn't need to be included.
"README.tpl",
]
rust-version = "1.66"
rust-version = "1.70"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion guppy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exclude = [
# Readme template that doesn't need to be included.
"README.tpl",
]
rust-version = "1.66"
rust-version = "1.70"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion target-spec-miette/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
keywords = ["cargo", "targets", "platforms", "miette"]
categories = ["development-tools"]
edition = "2021"
rust-version = "1.66"
rust-version = "1.70"

[dependencies]
target-spec = { version = "3.0.1", path = "../target-spec" }
Expand Down
2 changes: 1 addition & 1 deletion target-spec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
keywords = ["cargo", "targets", "platforms", "os", "cpu"]
categories = ["development-tools", "parser-implementations"]
edition = "2021"
rust-version = "1.66"
rust-version = "1.70"

[package.metadata.docs.rs]
all-features = true
Expand Down
1 change: 1 addition & 0 deletions target-spec/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ For more advanced usage, see `Platform` and `TargetSpec`.

The minimum supported Rust version (MSRV) is:
* For target-spec 3.0.x: **Rust 1.66**.
* Unreleased: **Rust 1.70**.

Within the 3.x series, MSRV bumps will be accompanied by a minor version update.

Expand Down
1 change: 1 addition & 0 deletions target-spec/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
//!
//! The minimum supported Rust version (MSRV) is:
//! * For target-spec 3.0.x: **Rust 1.66**.
//! * Unreleased: **Rust 1.70**.
//!
//! Within the 3.x series, MSRV bumps will be accompanied by a minor version update.
//!
Expand Down
2 changes: 1 addition & 1 deletion tools/cargo-hakari/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords = [
"guppy",
]
categories = ["development-tools::cargo-plugins"]
rust-version = "1.66"
rust-version = "1.70"

[dependencies]
camino = "1.1.6"
Expand Down
2 changes: 1 addition & 1 deletion tools/determinator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ include = [
# Include default rules with the package.
"default-rules.toml",
]
rust-version = "1.66"
rust-version = "1.70"

[dependencies]
camino = "1.1.6"
Expand Down
6 changes: 6 additions & 0 deletions tools/hakari/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Changed

- MSRV updated to Rust 1.70.

## [0.16.0] - 2023-07-29

### Changed
Expand Down
2 changes: 1 addition & 1 deletion tools/hakari/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords = [
"guppy",
]
categories = ["development-tools"]
rust-version = "1.66"
rust-version = "1.70"

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 0f0cea2

Please sign in to comment.