diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c238e25a..4afb8d08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 @@ -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 diff --git a/codespan-lsp/CHANGELOG.md b/codespan-lsp/CHANGELOG.md index 7103ab8e..16c42434 100644 --- a/codespan-lsp/CHANGELOG.md +++ b/codespan-lsp/CHANGELOG.md @@ -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 diff --git a/codespan-lsp/Cargo.toml b/codespan-lsp/Cargo.toml index c7550c6d..2902e362 100644 --- a/codespan-lsp/Cargo.toml +++ b/codespan-lsp/Cargo.toml @@ -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" } diff --git a/codespan-reporting/CHANGELOG.md b/codespan-reporting/CHANGELOG.md index 23c2bfa7..6b04a1f5 100644 --- a/codespan-reporting/CHANGELOG.md +++ b/codespan-reporting/CHANGELOG.md @@ -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 diff --git a/codespan-reporting/Cargo.toml b/codespan-reporting/Cargo.toml index fffe3cf0..7de6360c 100644 --- a/codespan-reporting/Cargo.toml +++ b/codespan-reporting/Cargo.toml @@ -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"] } diff --git a/codespan/CHANGELOG.md b/codespan/CHANGELOG.md index 99365f2d..091f2f49 100644 --- a/codespan/CHANGELOG.md +++ b/codespan/CHANGELOG.md @@ -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 diff --git a/codespan/Cargo.toml b/codespan/Cargo.toml index 32024b84..9aff6e17 100644 --- a/codespan/Cargo.toml +++ b/codespan/Cargo.toml @@ -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" }