From c01135d9ad9dd550b3aeda87963b3527f5b31fbb Mon Sep 17 00:00:00 2001 From: Xinye Tao Date: Tue, 12 Jul 2022 15:02:52 +0800 Subject: [PATCH] bump 0.2.1 (#240) Signed-off-by: tabokie --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- README.md | 2 +- ctl/Cargo.toml | 4 ++-- stress/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f806dfe..3b6f2cc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Raft Engine Change Log -## [Unreleased] +## [0.2.1] - 2022-07-12 ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index d2b8e28b..b2f941db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raft-engine" -version = "0.2.0" +version = "0.2.1" authors = ["The TiKV Project Developers"] edition = "2018" rust-version = "1.57" diff --git a/README.md b/README.md index 16834f79..0dfb549e 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Put this in your Cargo.toml: ```rust [dependencies] -raft-engine = "0.2.0" +raft-engine = "0.2.1" ``` Available Cargo features: diff --git a/ctl/Cargo.toml b/ctl/Cargo.toml index bebae42b..316ad0fc 100644 --- a/ctl/Cargo.toml +++ b/ctl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raft-engine-ctl" -version = "0.2.0" +version = "0.2.1" 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.0", features = ["scripting", "internals"] } +raft-engine = { path = "..", version = "0.2.1", features = ["scripting", "internals"] } diff --git a/stress/Cargo.toml b/stress/Cargo.toml index c3efb561..6b82b36d 100644 --- a/stress/Cargo.toml +++ b/stress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stress" -version = "0.2.0" +version = "0.2.1" authors = ["The TiKV Authors"] edition = "2018"