From 5fbb76a749a6126c71ca5972c79317e59d858c1e Mon Sep 17 00:00:00 2001 From: ilya Date: Sat, 21 Aug 2021 08:34:31 +0100 Subject: [PATCH] 0.1.3 --- Cargo.lock | 2 +- README.md | 2 +- little_raft/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 00fa58f..806abba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -118,7 +118,7 @@ checksum = "9385f66bf6105b241aa65a61cb923ef20efc665cb9f9bb50ac2f0c4b7f378d41" [[package]] name = "little_raft" -version = "0.1.2" +version = "0.1.3" dependencies = [ "crossbeam", "crossbeam-channel", diff --git a/README.md b/README.md index 703614e..1f866d3 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ where ``` -With that, you're good to go. We are working on examples, but for now you can look at the `little_raft/tests` directory and at the documentation at [https://docs.rs/little_raft/0.1.2/little_raft/](https://docs.rs/little_raft/0.1.2/little_raft/). We're working on adding more tests. +With that, you're good to go. We are working on examples, but for now you can look at the `little_raft/tests` directory and at the documentation at [https://docs.rs/little_raft/0.1.3/little_raft/](https://docs.rs/little_raft/0.1.3/little_raft/). We're working on adding more tests. ## Testing diff --git a/little_raft/Cargo.toml b/little_raft/Cargo.toml index c13acbf..50d12ad 100644 --- a/little_raft/Cargo.toml +++ b/little_raft/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "The lightest distributed consensus library. Run your own replicated state machine!" name = "little_raft" -version = "0.1.2" +version = "0.1.3" authors = ["Ilya Andreev "] edition = "2018" license = "MIT"