Skip to content

Commit 10c6e9d

Browse files
authored
*: bump 0.7.0 (#501)
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
1 parent f737667 commit 10c6e9d

4 files changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
- name: setup nightly
3939
if: ${{ matrix.rust == 'nightly' }}
4040
run: rustup default nightly
41+
- name: dump version
42+
run: cargo --version && protoc --version
4143
- name: check format
4244
if: ${{ matrix.rust == 'stable' && matrix.os == 'ubuntu-latest' }}
4345
run: cargo fmt --all -- --check

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.7.0 - 2023-03-06
2+
3+
- Update prost to 0.11 (#496)
4+
- Make priority an i64 so a lower than default priority can be configured (#495)
5+
- Allow fetching entries in asynchronous manner (#459)
6+
- Support setting max-inflight-msgs in runtime to reduce memory usage (#450)
7+
18
# 0.6.0 - 2021-06-16
29

310
- Joint Consensus became a stable feature (#379, #380, #382, #383, #385, #386, #411)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = "https://github.com/tikv/raft-rs"
1010
documentation = "https://docs.rs/raft"
1111
description = "The rust language implementation of Raft algorithm."
1212
categories = ["algorithms", "database-implementations"]
13-
edition = "2018"
13+
edition = "2021"
1414

1515
[workspace]
1616
members = ["proto", "harness", "datadriven"]

proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "raft-proto"
33
version = "0.7.0"
44
authors = ["The TiKV Project Developers"]
5-
edition = "2018"
5+
edition = "2021"
66
license = "Apache-2.0"
77
keywords = ["raft", "distributed-systems", "ha"]
88
repository = "https://github.com/pingcap/raft-rs"

0 commit comments

Comments
 (0)