From 3dce97c5a42e6ddbd3e13b058dc657315ceae897 Mon Sep 17 00:00:00 2001 From: Anthony Dodd Date: Tue, 18 May 2021 22:47:27 -0500 Subject: [PATCH] Updates for v0.6.1 release. --- CHANGELOG.md | 6 +++++- async-raft/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33ca842..46bc330 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,8 +3,12 @@ changelog This changelog follows the patterns described here: https://keepachangelog.com/en/1.0.0/. ## [unreleased] + +## async-raft 0.6.1 ### fixed -- Fixed [#105](https://github.com/async-raft/async-raft/issues/105) where function `set_target_state` missing `else` condition. +- Fixed [#105](https://github.com/async-raft/async-raft/issues/105) where function `set_target_state` missing `else` condition. +- Fixed [#106](https://github.com/async-raft/async-raft/issues/106) which ensures that counting of replicas to determine a new commit value only considers entries replicated as part of the current term. +- Fixed a bug where NonVoter nodes could be restarted and come back as voting members. ## async-raft 0.6.0 The big news for this release is that we are now based on Tokio 1.0! Big shoutout to @xu-cheng for doing all of the heavy lifting for the Tokio 1.0 update, along with many other changes which are part of this release. diff --git a/async-raft/Cargo.toml b/async-raft/Cargo.toml index 40baf82..aa1b3ac 100644 --- a/async-raft/Cargo.toml +++ b/async-raft/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-raft" -version = "0.6.0" +version = "0.6.1" edition = "2018" authors = ["Anthony Dodd "] categories = ["algorithms", "asynchronous", "data-structures"]