From cb4bfcdac4737744d184ec2143779d035529eb6b Mon Sep 17 00:00:00 2001 From: Cristiano Piemontese Date: Fri, 22 Nov 2024 14:52:06 +0100 Subject: [PATCH] bump MSRV --- .clippy.toml | 2 +- .github/workflows/ci.yml | 4 ++-- CHANGELOG.md | 7 ++----- Cargo.toml | 4 ++-- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.clippy.toml b/.clippy.toml index 3b9db9d..5e90250 100644 --- a/.clippy.toml +++ b/.clippy.toml @@ -1 +1 @@ -msrv = "1.74.0" +msrv = "1.81.0" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2be2fe3..5de9d31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v3 - run: | - rustup override set 1.74.0 + rustup override set 1.81.0 rustup component add rustfmt rustup component add clippy rustup component add rust-docs @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - run: rustup override set 1.74.0 + - run: rustup override set 1.81.0 - uses: Swatinem/rust-cache@v2 - uses: taiki-e/install-action@cargo-make - name: Add hosts entries diff --git a/CHANGELOG.md b/CHANGELOG.md index e297798..a7068e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ---- - -## [0.17.2] - 2024-11-22 +- Bump MSRV to `1.81.0`. - Expose option for setting ID function (#202) - Add ID format to `PgStore` - Allow `PgStoreBuilder` to set ID format @@ -361,8 +359,7 @@ Refer to: [#107], [#108] and [#109] -[Unreleased]: https://github.com/primait/event_sourcing.rs/compare/0.17.2...HEAD -[0.17.2]: https://github.com/primait/event_sourcing.rs/compare/0.17.1...0.17.2 +[Unreleased]: https://github.com/primait/event_sourcing.rs/compare/0.17.1...HEAD [0.17.1]: https://github.com/primait/event_sourcing.rs/compare/0.17.0...0.17.1 [0.17.0]: https://github.com/primait/event_sourcing.rs/compare/0.16.0...0.17.0 [0.16.0]: https://github.com/primait/event_sourcing.rs/compare/0.15.0...0.16.0 diff --git a/Cargo.toml b/Cargo.toml index 5dfc18f..205bffb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT OR Apache-2.0" name = "esrs" readme = "README.md" repository = "https://github.com/primait/event_sourcing.rs" -rust-version = "1.74.0" -version = "0.17.2" +rust-version = "1.81.0" +version = "0.17.1" [package.metadata.docs.rs] all-features = true