Updates for v0.6.1 release.

This commit is contained in:
Anthony Dodd 2021-05-18 22:47:27 -05:00
parent 9ecaf931e0
commit 3dce97c5a4
No known key found for this signature in database
GPG Key ID: 6E0613E0F653DBC0
2 changed files with 6 additions and 2 deletions

View File

@ -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.

View File

@ -1,6 +1,6 @@
[package]
name = "async-raft"
version = "0.6.0"
version = "0.6.1"
edition = "2018"
authors = ["Anthony Dodd <Dodd.AnthonyJosiah@gmail.com>"]
categories = ["algorithms", "asynchronous", "data-structures"]