1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00

bump msrv to 1.59

This commit is contained in:
Rob Ede 2022-08-28 20:30:32 +01:00
parent ffe122b76e
commit 7d932cd540
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
10 changed files with 12 additions and 3 deletions

View File

@ -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 }}

View File

@ -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

View File

@ -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

View File

@ -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<String>`.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -1 +1 @@
msrv = "1.57"
msrv = "1.59"