Skip to content

Commit

Permalink
chore: release foyer 0.11.4 (#733)
Browse files Browse the repository at this point in the history
Signed-off-by: MrCroxx <mrcroxx@outlook.com>
  • Loading branch information
MrCroxx authored Sep 24, 2024
1 parent af06589 commit 5fe3957
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 15 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,25 @@ date: 2023-05-12T11:02:09+08:00

<!-- truncate -->

## 2024-09-24

### Releases

| crate | version |
| - | - |
| foyer | 0.11.4 |
| foyer-common | 0.9.4 |
| foyer-intrusive | 0.9.4 |
| foyer-memory | 0.7.4 |
| foyer-storage | 0.10.4 |
| foyer-bench | 0.3.4 |

### Changes

- Revert pre-serialization design. The insert latency and memory usage would be better for most cases.
- Rename `with_buffer_threshold` to `with_buffer_pool_size`. The old method is kept but marked as deprecated.
- Raise a warn when using `DirectFileDevice` on within a file system.

## 2024-09-20

### Releases
Expand Down
4 changes: 2 additions & 2 deletions foyer-bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "foyer-bench"
version = "0.3.3"
version = "0.3.4"
edition = "2021"
authors = ["MrCroxx <mrcroxx@outlook.com>"]
description = "bench tool for foyer - the hybrid cache for Rust"
Expand All @@ -17,7 +17,7 @@ clap = { workspace = true }
console-subscriber = { version = "0.4", optional = true }
fastrace = { workspace = true, optional = true }
fastrace-jaeger = { workspace = true, optional = true }
foyer = { version = "0.11.3", path = "../foyer" }
foyer = { version = "0.11.4", path = "../foyer" }
futures = "0.3"
hdrhistogram = "7"
itertools = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion foyer-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "foyer-common"
version = "0.9.3"
version = "0.9.4"
edition = "2021"
authors = ["MrCroxx <mrcroxx@outlook.com>"]
description = "common components for foyer - the hybrid cache for Rust"
Expand Down
4 changes: 2 additions & 2 deletions foyer-intrusive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "foyer-intrusive"
version = "0.9.3"
version = "0.9.4"
edition = "2021"
authors = ["MrCroxx <mrcroxx@outlook.com>"]
description = "intrusive data structures for foyer - the hybrid cache for Rust"
Expand All @@ -11,7 +11,7 @@ readme = "../README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
foyer-common = { version = "0.9.3", path = "../foyer-common" }
foyer-common = { version = "0.9.4", path = "../foyer-common" }
itertools = { workspace = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions foyer-memory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "foyer-memory"
version = "0.7.3"
version = "0.7.4"
edition = "2021"
authors = ["MrCroxx <mrcroxx@outlook.com>"]
description = "memory cache for foyer - the hybrid cache for Rust"
Expand All @@ -15,8 +15,8 @@ ahash = "0.8"
bitflags = "2"
cmsketch = "0.2.1"
fastrace = { workspace = true }
foyer-common = { version = "0.9.3", path = "../foyer-common" }
foyer-intrusive = { version = "0.9.3", path = "../foyer-intrusive" }
foyer-common = { version = "0.9.4", path = "../foyer-common" }
foyer-intrusive = { version = "0.9.4", path = "../foyer-intrusive" }
futures = "0.3"
hashbrown = "0.14"
itertools = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions foyer-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "foyer-storage"
version = "0.10.3"
version = "0.10.4"
edition = "2021"
authors = ["MrCroxx <mrcroxx@outlook.com>"]
description = "storage engine for foyer - the hybrid cache for Rust"
Expand All @@ -26,8 +26,8 @@ clap = { workspace = true }
either = "1"
fastrace = { workspace = true }
flume = "0.11"
foyer-common = { version = "0.9.3", path = "../foyer-common" }
foyer-memory = { version = "0.7.3", path = "../foyer-memory" }
foyer-common = { version = "0.9.4", path = "../foyer-common" }
foyer-memory = { version = "0.7.4", path = "../foyer-memory" }
fs4 = "0.9.1"
futures = "0.3"
itertools = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions foyer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "foyer"
version = "0.11.3"
version = "0.11.4"
edition = "2021"
authors = ["MrCroxx <mrcroxx@outlook.com>"]
description = "Hybrid cache for Rust"
Expand All @@ -15,9 +15,9 @@ rust-version = "1.81.0"
ahash = "0.8"
anyhow = "1"
fastrace = { workspace = true }
foyer-common = { version = "0.9.3", path = "../foyer-common" }
foyer-memory = { version = "0.7.3", path = "../foyer-memory" }
foyer-storage = { version = "0.10.3", path = "../foyer-storage" }
foyer-common = { version = "0.9.4", path = "../foyer-common" }
foyer-memory = { version = "0.7.4", path = "../foyer-memory" }
foyer-storage = { version = "0.10.4", path = "../foyer-storage" }
futures = "0.3"
pin-project = "1"
tokio = { workspace = true }
Expand Down

0 comments on commit 5fe3957

Please sign in to comment.