Skip to content

Commit

Permalink
Merge pull request #438 from moka-rs/prepare-0.12.8
Browse files Browse the repository at this point in the history
Prepare for v0.12.8 release
  • Loading branch information
tatsuya6502 committed Jul 7, 2024
2 parents 5a0cc07 + 00c987d commit ebf2610
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Moka Cache — Change Log

## Version 0.12.8

### Fixed

- Avoid to use recent versions (`v0.1.12` or newer) of `triomphe` crate to keep our
MSRV (Minimum Supported Rust Version) at Rust 1.65
([#426][gh-pull-0426], by [@eaufavor][gh-eaufavor]).
- `triomphe@v0.1.12` requires Rust 1.76 or newer, so it will not compile with our
MSRV.
- docs: Fix per-entry expiration policy documentation ([#421][gh-pull-0421], by
[@arcstur][gh-arcstur]).


## Version 0.12.7

### Changed
Expand Down Expand Up @@ -844,12 +857,14 @@ The minimum supported Rust version (MSRV) is now 1.51.0 (Mar 25, 2021).
[RUSTSEC-2020-0168]: https://rustsec.org/advisories/RUSTSEC-2020-0168.html

[gh-06chaynes]: https://github.com/06chaynes
[gh-arcstur]: https://github.com/arcstur
[gh-aspect]: https://github.com/aspect
[gh-barkanido]: https://github.com/barkanido
[gh-ClSlaid]: https://github.com/ClSlaid
[gh-eaufavor]: https://github.com/eaufavor
[gh-LMJW]: https://github.com/LMJW
[gh-Milo123459]: https://github.com/Milo123459
[gh-messense]: https://github.com/messense
[gh-Milo123459]: https://github.com/Milo123459
[gh-nyurik]: https://github.com/nyurik
[gh-paolobarbolini]: https://github.com/paolobarbolini
[gh-peter-scholtens]: https://github.com/peter-scholtens
Expand Down Expand Up @@ -880,6 +895,8 @@ The minimum supported Rust version (MSRV) is now 1.51.0 (Mar 25, 2021).
[gh-issue-0034]: https://github.com/moka-rs/moka/issues/34/
[gh-issue-0031]: https://github.com/moka-rs/moka/issues/31/

[gh-pull-0426]: https://github.com/moka-rs/moka/pull/426/
[gh-pull-0421]: https://github.com/moka-rs/moka/pull/421/
[gh-pull-0417]: https://github.com/moka-rs/moka/pull/417/
[gh-pull-0390]: https://github.com/moka-rs/moka/pull/390/
[gh-pull-0384]: https://github.com/moka-rs/moka/pull/384/
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moka"
version = "0.12.7"
version = "0.12.8"
edition = "2021"
# Rust 1.65 was released on Nov 3, 2022.
rust-version = "1.65"
Expand Down
8 changes: 4 additions & 4 deletions src/future/entry_selector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ where
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.12.4", features = ["future"] }
/// // moka = { version = "0.12.8", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
///
/// use moka::{
Expand Down Expand Up @@ -269,7 +269,7 @@ where
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.12.4", features = ["future"] }
/// // moka = { version = "0.12.8", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
///
/// use moka::future::Cache;
Expand Down Expand Up @@ -724,7 +724,7 @@ where
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.12.4", features = ["future"] }
/// // moka = { version = "0.12.8", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
///
/// use moka::{
Expand Down Expand Up @@ -909,7 +909,7 @@ where
/// // Cargo.toml
/// //
/// // [dependencies]
/// // moka = { version = "0.12.4", features = ["future"] }
/// // moka = { version = "0.12.8", features = ["future"] }
/// // tokio = { version = "1", features = ["rt-multi-thread", "macros" ] }
///
/// use moka::future::Cache;
Expand Down

0 comments on commit ebf2610

Please sign in to comment.