Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release foyer 0.11.2 #706

Merged
merged 3 commits into from
Sep 12, 2024
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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
## 2024-09-12

| crate | version |
| - | - |
| foyer | 0.11.2 |
| foyer-common | 0.9.2 |
| foyer-intrusive | 0.9.2 |
| foyer-memory | 0.7.2 |
| foyer-storage | 0.10.2 |
| foyer-bench | 0.3.2 |

<details>

### Changes

- Support windows (for `foyer` only).
- Bump rust toolchain to `1.81.0`.
- Expose in-memory cache builder and cache entry.
- Reduce page fault and vec growth overhead.
- Use bytes size for `foyer-bench`.
- Fix install deps script.

</details>

## 2024-08-31

| crate | version |
Expand Down
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,17 @@ More examples and details can be found [here](https://github.com/foyer-rs/foyer/

*foyer* is built against the recent stable release. The minimum supported version is 1.81.0. The current *foyer* version is not guaranteed to build on Rust versions earlier than the minimum supported version.

## Supported Platforms

*foyer* is designed to serve on Linux OS, but can still be built on other OS for development.

However, other components may not support non-Linux OS.

| Component | Linux | MacOS | Windows |
| - | - | - | - |
| foyer | ✓ | ✓ | ✓ |
| foyer-bench | ✓ | ✗ | ✗ |

## Development State & Roadmap

Currently, *foyer* is still under heavy development.
Expand All @@ -210,11 +221,7 @@ Don't forget to pass `make fast` (which means fast check & test) locally before

If you want to run a broader range of checks locally, run `make full`. 🙌

Thank you for your contribution~

<p>
<img src="https://raw.githubusercontent.com/foyer-rs/foyer/main/etc/logo/ferris.min.svg" width="10%" />
</p>
Thank you for your contribution~ <img src="https://raw.githubusercontent.com/foyer-rs/foyer/main/etc/logo/ferris.min.svg" height="24px" />

## Star History

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.1"
version = "0.3.2"
edition = "2021"
authors = ["MrCroxx <[email protected]>"]
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.1", path = "../foyer" }
foyer = { version = "0.11.2", 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.1"
version = "0.9.2"
edition = "2021"
authors = ["MrCroxx <[email protected]>"]
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.1"
version = "0.9.2"
edition = "2021"
authors = ["MrCroxx <[email protected]>"]
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.1", path = "../foyer-common" }
foyer-common = { version = "0.9.2", 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.1"
version = "0.7.2"
edition = "2021"
authors = ["MrCroxx <[email protected]>"]
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.1", path = "../foyer-common" }
foyer-intrusive = { version = "0.9.1", path = "../foyer-intrusive" }
foyer-common = { version = "0.9.2", path = "../foyer-common" }
foyer-intrusive = { version = "0.9.2", 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.1"
version = "0.10.2"
edition = "2021"
authors = ["MrCroxx <[email protected]>"]
description = "storage engine for foyer - the hybrid cache for Rust"
Expand All @@ -24,8 +24,8 @@ bytes = "1"
clap = { workspace = true }
either = "1"
fastrace = { workspace = true }
foyer-common = { version = "0.9.1", path = "../foyer-common" }
foyer-memory = { version = "0.7.1", path = "../foyer-memory" }
foyer-common = { version = "0.9.2", path = "../foyer-common" }
foyer-memory = { version = "0.7.2", 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.1"
version = "0.11.2"
edition = "2021"
authors = ["MrCroxx <[email protected]>"]
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.1", path = "../foyer-common" }
foyer-memory = { version = "0.7.1", path = "../foyer-memory" }
foyer-storage = { version = "0.10.1", path = "../foyer-storage" }
foyer-common = { version = "0.9.2", path = "../foyer-common" }
foyer-memory = { version = "0.7.2", path = "../foyer-memory" }
foyer-storage = { version = "0.10.2", path = "../foyer-storage" }
futures = "0.3"
pin-project = "1"
tokio = { workspace = true }
Expand Down
Loading