From 7c0f8d2943f079e79357688a570ab3e2b799848a Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Fri, 10 Nov 2023 09:57:52 +0100 Subject: [PATCH] Bump MSRV again One of our dependencies has an MSRV of 1.66 now. --- .github/workflows/CI.yml | 2 +- README.md | 2 +- tower-http/CHANGELOG.md | 3 ++- tower-http/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b206c8d8..93abe260 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -72,7 +72,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: dtolnay/rust-toolchain@1.63 + - uses: dtolnay/rust-toolchain@1.66 - name: Install protoc uses: taiki-e/install-action@v2 with: diff --git a/README.md b/README.md index 4d84d056..4df24186 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ The [examples] folder contains various examples of how to use Tower HTTP: ## Minimum supported Rust version -tower-http's MSRV is 1.63. +tower-http's MSRV is 1.66. ## Getting Help diff --git a/tower-http/CHANGELOG.md b/tower-http/CHANGELOG.md index 020e92fd..1c3b55d7 100644 --- a/tower-http/CHANGELOG.md +++ b/tower-http/CHANGELOG.md @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Changed -- Bump Minimum Supported Rust Version to 1.63 ([#418]) +- Bump Minimum Supported Rust Version to 1.66 ([#433]) ## Removed @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 http-range-header to `0.4` [#418]: https://github.com/tower-rs/tower-http/pull/418 +[#433]: https://github.com/tower-rs/tower-http/pull/433 # 0.4.2 (July 19, 2023) diff --git a/tower-http/Cargo.toml b/tower-http/Cargo.toml index b88ddeb3..0f060a57 100644 --- a/tower-http/Cargo.toml +++ b/tower-http/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/tower-rs/tower-http" homepage = "https://github.com/tower-rs/tower-http" categories = ["asynchronous", "network-programming", "web-programming"] keywords = ["io", "async", "futures", "service", "http"] -rust-version = "1.63" +rust-version = "1.66" [dependencies] bitflags = "2.0.2"