From fd2fb2046ae61663d7dfefd0ecf79ecb87a79f76 Mon Sep 17 00:00:00 2001 From: Guilherme Souza Date: Mon, 24 Jun 2024 11:13:23 +0200 Subject: [PATCH] Increase MSRV to 1.63 --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 1 + README.md | 11 ++++++----- feattle/README.md | 11 ++++++----- feattle/src/lib.rs | 2 +- 5 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68ae8a1..c58b52e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.60.0 + toolchain: 1.63.0 profile: minimal override: true - uses: actions-rs/cargo@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 93e1d16..2fe51be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Renamed feature "s3" to "rusoto_s3" in `feattle` and `feattle-sync` - Renamed `feattle_sync::S3` to `feattle_sync::RusotoS3` +- Minimum Rust version is now 1.63 ### Added diff --git a/README.md b/README.md index b2174f8..b824a30 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ Featture toggles for Rust (called "feattles", for short), extensible and with b synchronization and administration UI. ### Features + - Feature toggles that synchronize automatically with a backing storage - Feature toggles can be as simple `bool`, but can also be lists, maps and arbitrary tpes ( (through the [`FeattleValue`] trait). @@ -108,7 +109,7 @@ will be created with `Default::default()`. ## Minimum supported Rust version -As of this release, the MSRV is 1.60.0, as tested in the CI. A patch release will never require +As of this release, the MSRV is 1.63.0, as tested in the CI. A patch release will never require a newer MSRV. ## Optional features @@ -138,10 +139,10 @@ provide a different storage or admin, you just need `feattle-core`. Licensed under either of - * Apache License, Version 2.0 - ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) - * MIT license - ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) +* Apache License, Version 2.0 + ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) +* MIT license + ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) at your option. diff --git a/feattle/README.md b/feattle/README.md index b2174f8..b824a30 100644 --- a/feattle/README.md +++ b/feattle/README.md @@ -9,6 +9,7 @@ Featture toggles for Rust (called "feattles", for short), extensible and with b synchronization and administration UI. ### Features + - Feature toggles that synchronize automatically with a backing storage - Feature toggles can be as simple `bool`, but can also be lists, maps and arbitrary tpes ( (through the [`FeattleValue`] trait). @@ -108,7 +109,7 @@ will be created with `Default::default()`. ## Minimum supported Rust version -As of this release, the MSRV is 1.60.0, as tested in the CI. A patch release will never require +As of this release, the MSRV is 1.63.0, as tested in the CI. A patch release will never require a newer MSRV. ## Optional features @@ -138,10 +139,10 @@ provide a different storage or admin, you just need `feattle-core`. Licensed under either of - * Apache License, Version 2.0 - ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) - * MIT license - ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) +* Apache License, Version 2.0 + ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) +* MIT license + ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) at your option. diff --git a/feattle/src/lib.rs b/feattle/src/lib.rs index 650e6fe..56a24ee 100644 --- a/feattle/src/lib.rs +++ b/feattle/src/lib.rs @@ -99,7 +99,7 @@ //! //! # Minimum supported Rust version //! -//! As of this release, the MSRV is 1.60.0, as tested in the CI. A patch release will never require +//! As of this release, the MSRV is 1.63.0, as tested in the CI. A patch release will never require //! a newer MSRV. //! //! # Optional features