From 3b41216ab3d5ede588c1c2181ca208010a78c46f Mon Sep 17 00:00:00 2001 From: Jay Date: Mon, 29 Apr 2019 19:16:41 +0800 Subject: [PATCH] *: bump to 0.4.2 (#228) --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2679ccc4..d7a4159fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.4.2 - 2019-04-29 + +- Fix potential two leaders at the same term when transferring leader. (https://github.com/pingcap/raft-rs/pull/225) +- Support `StatusRef` that doesn't clone. (https://github.com/pingcap/raft-rs/pull/227) + # 0.4.0 - 2018-09-18 - No longer scan the raft log when becoming a leader. (https://github.com/pingcap/raft-rs/pull/100) diff --git a/Cargo.toml b/Cargo.toml index a22f58afd..5510c51a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "raft" -version = "0.4.0" +version = "0.4.2" authors = ["The TiKV Project Developers"] license = "Apache-2.0" keywords = ["raft", "distributed-systems", "ha"]