Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ date: 2023-05-12T11:02:09+08:00

<!-- truncate -->

## 2025-02-08

### Releases

| crate | version |
| - | - |
| foyer | 0.14.1 |
| foyer-common | 0.14.1 |
| foyer-memory | 0.14.1 |
| foyer-storage | 0.14.1 |
| foyer-bench | 0.14.1 |

### Changes

- Use `tokio-rs/tokio` by default as the runtime, use `madsim-tokio` when `madsim` configuration is enabled.
- Optimize dependencies.

## 2025-01-14

### Releases
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [
]

[workspace.package]
version = "0.14.0"
version = "0.14.1"
edition = "2021"
rust-version = "1.81.0"
repository = "https://github.com/foyer-rs/foyer"
Expand Down Expand Up @@ -45,10 +45,10 @@ prometheus = "0.13"
mixtrics = "0.0.3"

# foyer components
foyer-common = { version = "0.14.0", path = "foyer-common" }
foyer-memory = { version = "0.14.0", path = "foyer-memory" }
foyer-storage = { version = "0.14.0", path = "foyer-storage" }
foyer = { version = "0.14.0", path = "foyer" }
foyer-common = { version = "0.14.1", path = "foyer-common" }
foyer-memory = { version = "0.14.1", path = "foyer-memory" }
foyer-storage = { version = "0.14.1", path = "foyer-storage" }
foyer = { version = "0.14.1", path = "foyer" }

[workspace.lints.rust]
missing_docs = "warn"
Expand Down
Loading