From b4d564c4a4d51194365101e9d3b34f7d8f2d3e38 Mon Sep 17 00:00:00 2001 From: Xinye Tao Date: Tue, 26 Jul 2022 14:12:08 +0800 Subject: [PATCH] bump 0.2.2 (#254) Signed-off-by: tabokie --- CHANGELOG.md | 3 ++- Cargo.toml | 2 +- README.md | 2 +- ctl/Cargo.toml | 4 ++-- stress/Cargo.toml | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7001864..e154724a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ # Raft Engine Change Log -## [Unreleased] +## [0.2.2] - 2022-07-26 ### Bug Fixes * Avoid leaving fractured write after failure by reseeking the file writer. Panic if the reseek fails as well. +* Fix a parallel recovery panic bug. ## [0.2.1] - 2022-07-12 diff --git a/Cargo.toml b/Cargo.toml index b2f941db..205994ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raft-engine" -version = "0.2.1" +version = "0.2.2" authors = ["The TiKV Project Developers"] edition = "2018" rust-version = "1.57" diff --git a/README.md b/README.md index 0dfb549e..1905a0f3 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Put this in your Cargo.toml: ```rust [dependencies] -raft-engine = "0.2.1" +raft-engine = "0.2.2" ``` Available Cargo features: diff --git a/ctl/Cargo.toml b/ctl/Cargo.toml index 316ad0fc..cd4b4c3a 100644 --- a/ctl/Cargo.toml +++ b/ctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raft-engine-ctl" -version = "0.2.1" +version = "0.2.2" authors = ["The TiKV Project Developers"] edition = "2018" rust-version = "1.57" @@ -11,4 +11,4 @@ license = "Apache-2.0" [dependencies] clap = { version = "3.0.0-rc.0", features = ["derive", "cargo"] } env_logger = "0.9" -raft-engine = { path = "..", version = "0.2.1", features = ["scripting", "internals"] } +raft-engine = { path = "..", version = "0.2.2", features = ["scripting", "internals"] } diff --git a/stress/Cargo.toml b/stress/Cargo.toml index 6b82b36d..976adb05 100644 --- a/stress/Cargo.toml +++ b/stress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stress" -version = "0.2.1" +version = "0.2.2" authors = ["The TiKV Authors"] edition = "2018"