From d5b5326eac0185c6b4e216071719dd2192508f30 Mon Sep 17 00:00:00 2001 From: Hoverbear Date: Thu, 5 Jul 2018 09:37:48 -0700 Subject: [PATCH 1/2] changelog: Add links to PRs --- CHANGELOG.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4f8d57c8..ed70fb407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,20 @@ # 0.3.0 - 2018-06-07 -- Fix deadlock during prevote migration process -- Keep compatible with protobuf 2.0 -- Make raft `Send` -- Add more docs and example -- Support configuring election timeout range +- Now supports configuring the election timeout range (https://github.com/pingcap/raft-rs/pull/63). +- Fixed a compiler error (https://github.com/pingcap/raft-rs/pull/64) +- Made Raft now `Send` (https://github.com/pingcap/raft-rs/pull/67) +- Added documentation examples (https://github.com/pingcap/raft-rs/pull/69) +- Workaround a problem with Protobufs (https://github.com/pingcap/raft-rs/pull/75) +- Fixed a deadlock in the prevote migration process (https://github.com/pingcap/raft-rs/pull/42) # 0.2.0 - 2018-05-14 -- Deprecated sync-log and add context -- Fix learner isolation bug -- Port several tests -- Add examples -- Use fxhash +- Deprecated sync-log and add context (https://github.com/pingcap/raft-rs/pull/59) +- Fix learner isolation bug (https://github.com/pingcap/raft-rs/pull/58) +- Port several tests (https://github.com/pingcap/raft-rs/pull/54, https://github.com/pingcap/raft-rs/pull/41) +- Add examples (https://github.com/pingcap/raft-rs/pull/44) +- Use fxhash (https://github.com/pingcap/raft-rs/pull/48) # 0.1.0 - 2018-02-26 -initial release +- initial release From 7b4defc4e1b317412495414dea4f357d4eb13479 Mon Sep 17 00:00:00 2001 From: Hoverbear Date: Fri, 6 Jul 2018 09:33:10 -0700 Subject: [PATCH 2/2] changelog: Refine 0.3.0 change log --- CHANGELOG.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed70fb407..9d3f6a32c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,14 @@ # 0.3.0 - 2018-06-07 -- Now supports configuring the election timeout range (https://github.com/pingcap/raft-rs/pull/63). -- Fixed a compiler error (https://github.com/pingcap/raft-rs/pull/64) +- Support configuring the election timeout range (https://github.com/pingcap/raft-rs/pull/63). +- Keep compatible with rust-protobuf 2.0 (https://github.com/pingcap/raft-rs/pull/64, https://github.com/pingcap/raft-rs/pull/75) - Made Raft now `Send` (https://github.com/pingcap/raft-rs/pull/67) - Added documentation examples (https://github.com/pingcap/raft-rs/pull/69) -- Workaround a problem with Protobufs (https://github.com/pingcap/raft-rs/pull/75) - Fixed a deadlock in the prevote migration process (https://github.com/pingcap/raft-rs/pull/42) # 0.2.0 - 2018-05-14 -- Deprecated sync-log and add context (https://github.com/pingcap/raft-rs/pull/59) +- Deprecate sync-log and add context (https://github.com/pingcap/raft-rs/pull/59) - Fix learner isolation bug (https://github.com/pingcap/raft-rs/pull/58) - Port several tests (https://github.com/pingcap/raft-rs/pull/54, https://github.com/pingcap/raft-rs/pull/41) - Add examples (https://github.com/pingcap/raft-rs/pull/44)