From 7d932cd540e422a90f5d6c1771ed74264c740819 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sun, 28 Aug 2022 20:30:32 +0100 Subject: [PATCH] bump msrv to 1.59 --- .github/workflows/ci.yml | 4 ++-- actix-cors/CHANGES.md | 1 + actix-identity/CHANGES.md | 1 + actix-limitation/CHANGES.md | 2 ++ actix-protobuf/CHANGES.md | 1 + actix-redis/CHANGES.md | 1 + actix-session/CHANGES.md | 1 + actix-settings/CHANGES.md | 1 + actix-web-httpauth/CHANGES.md | 1 + clippy.toml | 2 +- 10 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9cb5522f..2b6bda9f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: target: - { name: Linux, os: ubuntu-latest, triple: x86_64-unknown-linux-gnu } version: - - 1.57 # MSRV + - 1.59 # MSRV - stable name: ${{ matrix.target.name }} / ${{ matrix.version }} @@ -82,7 +82,7 @@ jobs: - { name: macOS, os: macos-latest, triple: x86_64-apple-darwin } - { name: Windows, os: windows-latest, triple: x86_64-pc-windows-msvc } version: - - 1.57 # MSRV + - 1.59 # MSRV - stable name: ${{ matrix.target.name }} / ${{ matrix.version }} diff --git a/actix-cors/CHANGES.md b/actix-cors/CHANGES.md index 65e2eb44e..e19b7847b 100644 --- a/actix-cors/CHANGES.md +++ b/actix-cors/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2022-xx-xx +- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. ## 0.6.2 - 2022-08-07 diff --git a/actix-identity/CHANGES.md b/actix-identity/CHANGES.md index 1487b3129..d53068e22 100644 --- a/actix-identity/CHANGES.md +++ b/actix-identity/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2022-xx-xx +- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. ## 0.5.2 - 2022-07-19 diff --git a/actix-limitation/CHANGES.md b/actix-limitation/CHANGES.md index 573b09032..269ebb7ff 100644 --- a/actix-limitation/CHANGES.md +++ b/actix-limitation/CHANGES.md @@ -3,6 +3,8 @@ ## Unreleased - 2022-xx-xx - Implement `Default` for `RateLimiter`. - `RateLimiter` is marked `#[non_exhaustive]`; use `RateLimiter::default()` instead. +- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. + ## 0.3.0 - 2022-07-11 - `Limiter::builder` now takes an `impl Into`. diff --git a/actix-protobuf/CHANGES.md b/actix-protobuf/CHANGES.md index 80a1eacbc..ea75f097c 100644 --- a/actix-protobuf/CHANGES.md +++ b/actix-protobuf/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2022-xx-xx +- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. ## 0.9.0 - 2022-08-24 diff --git a/actix-redis/CHANGES.md b/actix-redis/CHANGES.md index abc691c7a..5b3e84599 100644 --- a/actix-redis/CHANGES.md +++ b/actix-redis/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2022-xx-xx +- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. ## 0.12.0 - 2022-07-09 diff --git a/actix-session/CHANGES.md b/actix-session/CHANGES.md index 3e11c5ed2..6411b3970 100644 --- a/actix-session/CHANGES.md +++ b/actix-session/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2021-xx-xx +- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. ## 0.7.1 - 2022-07-24 diff --git a/actix-settings/CHANGES.md b/actix-settings/CHANGES.md index 2fb8293f3..16f1edfe3 100644 --- a/actix-settings/CHANGES.md +++ b/actix-settings/CHANGES.md @@ -4,6 +4,7 @@ - Rename `AtError => Error`. - Remove `AtResult` type alias. +- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. ## 0.6.0 - 2022-07-31 diff --git a/actix-web-httpauth/CHANGES.md b/actix-web-httpauth/CHANGES.md index cf771d15f..56b69d72e 100644 --- a/actix-web-httpauth/CHANGES.md +++ b/actix-web-httpauth/CHANGES.md @@ -1,6 +1,7 @@ # Changes ## Unreleased - 2022-xx-xx +- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency. ## 0.8.0 - 2022-07-21 diff --git a/clippy.toml b/clippy.toml index 5cccb362c..abe19b3a0 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1 +1 @@ -msrv = "1.57" +msrv = "1.59"