Skip to content

Commit

Permalink
*: bump 0.7.0 (#501)
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Lee <[email protected]>
  • Loading branch information
BusyJay authored Mar 7, 2023
1 parent f737667 commit 10c6e9d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ jobs:
- name: setup nightly
if: ${{ matrix.rust == 'nightly' }}
run: rustup default nightly
- name: dump version
run: cargo --version && protoc --version
- name: check format
if: ${{ matrix.rust == 'stable' && matrix.os == 'ubuntu-latest' }}
run: cargo fmt --all -- --check
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.7.0 - 2023-03-06

- Update prost to 0.11 (#496)
- Make priority an i64 so a lower than default priority can be configured (#495)
- Allow fetching entries in asynchronous manner (#459)
- Support setting max-inflight-msgs in runtime to reduce memory usage (#450)

# 0.6.0 - 2021-06-16

- Joint Consensus became a stable feature (#379, #380, #382, #383, #385, #386, #411)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ homepage = "https://github.com/tikv/raft-rs"
documentation = "https://docs.rs/raft"
description = "The rust language implementation of Raft algorithm."
categories = ["algorithms", "database-implementations"]
edition = "2018"
edition = "2021"

[workspace]
members = ["proto", "harness", "datadriven"]
Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "raft-proto"
version = "0.7.0"
authors = ["The TiKV Project Developers"]
edition = "2018"
edition = "2021"
license = "Apache-2.0"
keywords = ["raft", "distributed-systems", "ha"]
repository = "https://github.com/pingcap/raft-rs"
Expand Down

0 comments on commit 10c6e9d

Please sign in to comment.