Skip to content

Commit

Permalink
Bump MSRV to 1.60
Browse files Browse the repository at this point in the history
Now that we're on 1.56, we pick up a newer version of rustyline than
before. This version depends on log = "0.4" which requires 1.60, so we
must go all the way to 1.60.
  • Loading branch information
tamird committed Jan 9, 2024
1 parent 49271e6 commit 74a346c
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 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.56.0", "stable", "beta", "nightly"]
rust: ["1.60.0", "stable", "beta", "nightly"]
name: Check (${{ matrix.rust }})
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
command: update
# NOTE: Keep up to date with the minimum version of `lsp-types`
# specified in `codespan-lsp/Cargo.toml`
args: --precise 0.84.0 lsp-types
args: --precise 0.84.0 -p lsp-types
- name: Run cargo test for codespan-lsp
uses: actions-rs/cargo@v1
with:
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
rust: ["1.56.0", "stable", "beta", "nightly"]
rust: ["1.60.0", "stable", "beta", "nightly"]
name: Test Suite (${{ matrix.rust }})
steps:
- uses: actions/checkout@v2
Expand All @@ -84,7 +84,7 @@ jobs:
command: update
# NOTE: Keep up to date with the minimum version of `lsp-types`
# specified in `codespan-lsp/Cargo.toml`
args: --precise 0.84.0 lsp-types
args: --precise 0.84.0 -p lsp-types
- name: Run cargo test for codespan-lsp
uses: actions-rs/cargo@v1
with:
Expand All @@ -95,7 +95,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
rust: ["1.56.0", "stable", "beta", "nightly"]
rust: ["1.60.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.56.0` (was `1.40.0`).
The minimum supported rustc version is now `1.60.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.56"
rust-version = "1.60"

[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.56.0` (was `1.40.0`).
The minimum supported rustc version is now `1.60.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.56"
rust-version = "1.60"

[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.56.0` (was `1.40.0`).
The minimum supported rustc version is now `1.60.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.56"
rust-version = "1.60"

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

0 comments on commit 74a346c

Please sign in to comment.