From 6a066464614fcfe025edf6f10a67cb7658b1b285 Mon Sep 17 00:00:00 2001 From: MrCroxx Date: Wed, 4 Dec 2024 14:32:16 +0800 Subject: [PATCH] chore: release foyer v0.13.1 Signed-off-by: MrCroxx --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 10 +++++----- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2da35b5f..b208cbc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,22 @@ date: 2023-05-12T11:02:09+08:00 +## 2024-12-04 + +### Releases + +| crate | version | +| - | - | +| foyer | 0.13.1 | +| foyer-common | 0.13.1 | +| foyer-memory | 0.13.1 | +| foyer-storage | 0.13.1 | +| foyer-bench | 0.13.1 | + +### Changes + +- Refactor cache builders. `name` field requires `Cow<'static, str>` instead of `&'static str` for convenience. + ## 2024-12-02 ### Releases diff --git a/Cargo.toml b/Cargo.toml index 409bf5e6..7fecb53b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ ] [workspace.package] -version = "0.13.0" +version = "0.13.1" edition = "2021" rust-version = "1.81.0" repository = "https://github.com/foyer-rs/foyer" @@ -53,10 +53,10 @@ opentelemetry_0_26 = { package = "opentelemetry", version = "0.26" } prometheus-client_0_22 = { package = "prometheus-client", version = "0.22" } # foyer components -foyer-common = { version = "0.13.0", path = "foyer-common" } -foyer-memory = { version = "0.13.0", path = "foyer-memory" } -foyer-storage = { version = "0.13.0", path = "foyer-storage" } -foyer = { version = "0.13.0", path = "foyer" } +foyer-common = { version = "0.13.1", path = "foyer-common" } +foyer-memory = { version = "0.13.1", path = "foyer-memory" } +foyer-storage = { version = "0.13.1", path = "foyer-storage" } +foyer = { version = "0.13.1", path = "foyer" } [workspace.lints.rust] missing_docs = "warn"