From 31e8f1d126ae6b630391c321c36c8a27df3880ed Mon Sep 17 00:00:00 2001 From: lucasliang Date: Tue, 16 Apr 2024 20:25:59 +0800 Subject: [PATCH] *: bump 0.4.2 Signed-off-by: lucasliang --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- ctl/Cargo.toml | 4 ++-- stress/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2aaa484..4b6a52f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [0.4.1] - 2024-04-16 + +### Behavior Changes + +* Periodically flush unsynced bytes when rewriting to avoid I/O jitters if flushing too many bytes impede the foreground writes. #347 +* Errors will be returned if rewriting fails, instread of `panic` directly. #343 + ## [0.4.1] - 2023-09-14 ### Behavior Changes diff --git a/Cargo.toml b/Cargo.toml index 4f6f4846..357bd0f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raft-engine" -version = "0.4.1" +version = "0.4.2" authors = ["The TiKV Project Developers"] edition = "2018" rust-version = "1.66.0" diff --git a/ctl/Cargo.toml b/ctl/Cargo.toml index 5bf23c8b..f7a10e1e 100644 --- a/ctl/Cargo.toml +++ b/ctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raft-engine-ctl" -version = "0.4.1" +version = "0.4.2" authors = ["The TiKV Project Developers"] edition = "2018" rust-version = "1.61.0" @@ -11,4 +11,4 @@ license = "Apache-2.0" [dependencies] clap = { version = "3.1", features = ["derive", "cargo"] } env_logger = "0.10" -raft-engine = { path = "..", version = "0.4.1", features = ["scripting", "internals"] } +raft-engine = { path = "..", version = "0.4.2", features = ["scripting", "internals"] } diff --git a/stress/Cargo.toml b/stress/Cargo.toml index 79d131e2..e5a24f02 100644 --- a/stress/Cargo.toml +++ b/stress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stress" -version = "0.4.1" +version = "0.4.2" authors = ["The TiKV Authors"] edition = "2018"