Skip to content

Commit 8453663

Browse files
authored
*: bump to 0.2 (#61)
1 parent a874d93 commit 8453663

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 0.2.0 - 2018-05-14
2+
3+
- Deprecated sync-log and add context
4+
- Fix learner isolation bug
5+
- Port several tests
6+
- Add examples
7+
- Use fxhash
8+
9+
# 0.1.0 - 2018-02-26
10+
11+
initial release

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "raft"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The TiKV Project Developers"]
55
license = "Apache-2.0"
66
keywords = ["raft", "distributed-systems", "ha"]
@@ -13,7 +13,8 @@ categories = ["algorithms", "database-implementations"]
1313

1414
[dependencies]
1515
log = "0.4.1"
16-
protobuf = "~1.5"
16+
# TODO: support 1.6
17+
protobuf = "<1.6"
1718
quick-error = "1.2.1"
1819
rand = "0.4"
1920
fxhash = "0.2.1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To include this project as a dependency:
2424

2525
```
2626
[dependencies]
27-
raft = "0.1"
27+
raft = "0.2"
2828
```
2929

3030
This crate is currently being used in production with [TiKV](https://github.com/pingcap/tikv), and is an actively developed project. There are still [several jobs](https://github.com/pingcap/raft-rs/issues/35), including writing extensive documentation and creating more examples, that need to be finished before reaching 1.0.

0 commit comments

Comments
 (0)