Skip to content

Commit

Permalink
Increase MSRV to 1.63
Browse files Browse the repository at this point in the history
  • Loading branch information
sitegui committed Jun 24, 2024
1 parent 02892c0 commit fd2fb20
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down
11 changes: 6 additions & 5 deletions feattle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion feattle/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fd2fb20

Please sign in to comment.