Skip to content

Commit

Permalink
*: bump to 0.2 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
BusyJay authored May 14, 2018
1 parent a874d93 commit 8453663
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# 0.2.0 - 2018-05-14

- Deprecated sync-log and add context
- Fix learner isolation bug
- Port several tests
- Add examples
- Use fxhash

# 0.1.0 - 2018-02-26

initial release
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "raft"
version = "0.1.0"
version = "0.2.0"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
keywords = ["raft", "distributed-systems", "ha"]
Expand All @@ -13,7 +13,8 @@ categories = ["algorithms", "database-implementations"]

[dependencies]
log = "0.4.1"
protobuf = "~1.5"
# TODO: support 1.6
protobuf = "<1.6"
quick-error = "1.2.1"
rand = "0.4"
fxhash = "0.2.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To include this project as a dependency:

```
[dependencies]
raft = "0.1"
raft = "0.2"
```

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.
Expand Down

0 comments on commit 8453663

Please sign in to comment.