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"]