Skip to content

Commit

Permalink
Bump MSRV to 1.61
Browse files Browse the repository at this point in the history
We end up depending on os_str_bytes@6.6.1 through clap_lex, and the
former requires 1.61.
  • Loading branch information
tamird committed Jan 12, 2024
1 parent c0fc32f commit ded72a7
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
rust: ["1.60.0", "stable", "beta", "nightly"]
rust: ["1.61.0", "stable", "beta", "nightly"]
name: Check (${{ matrix.rust }})
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
rust: ["1.60.0", "stable", "beta", "nightly"]
rust: ["1.61.0", "stable", "beta", "nightly"]
name: Test Suite (${{ matrix.rust }})
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
rust: ["1.60.0", "stable", "beta", "nightly"]
rust: ["1.61.0", "stable", "beta", "nightly"]
name: Rustfmt (${{ matrix.rust }})
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion codespan-lsp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

The minimum supported rustc version is now `1.60.0` (was `1.40.0`).
The minimum supported rustc version is now `1.61.0` (was `1.40.0`).
This is because some dependencies now require this Rust version.

### Changed
Expand Down
2 changes: 1 addition & 1 deletion codespan-lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ homepage = "https://github.com/brendanzab/codespan"
repository = "https://github.com/brendanzab/codespan"
documentation = "https://docs.rs/codespan-lsp"
edition = "2018"
rust-version = "1.60"
rust-version = "1.61"

[dependencies]
codespan-reporting = { version = "0.11.1", path = "../codespan-reporting" }
Expand Down
2 changes: 1 addition & 1 deletion codespan-reporting/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

The minimum supported rustc version is now `1.60.0` (was `1.40.0`).
The minimum supported rustc version is now `1.61.0` (was `1.40.0`).
This is because some testing dependencies now require this Rust version.

### Added
Expand Down
2 changes: 1 addition & 1 deletion codespan-reporting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/brendanzab/codespan"
documentation = "https://docs.rs/codespan-reporting"
exclude = ["assets/**"]
edition = "2018"
rust-version = "1.60"
rust-version = "1.61"

[dependencies]
serde = { version = "1", optional = true, features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion codespan/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

The minimum supported rustc version is now `1.60.0` (was `1.40.0`).
The minimum supported rustc version is now `1.61.0` (was `1.40.0`).
This is because dependencies of `codespan-lsp` now require this Rust version.

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion codespan/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ homepage = "https://github.com/brendanzab/codespan"
repository = "https://github.com/brendanzab/codespan"
documentation = "https://docs.rs/codespan"
edition = "2018"
rust-version = "1.60"
rust-version = "1.61"

[dependencies]
codespan-reporting = { path = "../codespan-reporting", version = "0.11.1" }
Expand Down

0 comments on commit ded72a7

Please sign in to comment.