diff --git a/CHANGELOG.md b/CHANGELOG.md index 78b092395..096f33d82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## [x.x.x] +## [2.1.0] + +### New - New [leader latch](https://curator.apache.org/curator-recipes/leader-latch.html) recipe diff --git a/Cargo.toml b/Cargo.toml index efd091bab..6187fb660 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zookeeper-async" -version = "2.0.0" +version = "2.1.0" authors = ["Kamil Rojewski ", "Nandor Kracser "] license = "MIT" homepage = "https://github.com/krojew/rust-zookeeper" diff --git a/README.md b/README.md index dec608e51..46eed24c5 100644 --- a/README.md +++ b/README.md @@ -6,26 +6,26 @@ Async Zookeeper client written 100% in Rust, based on tokio. This library is intended to be equivalent with the official (low-level) [ZooKeeper][javadoc] client which ships with the official ZK distribution. -I have plans to implement recipes and more complex [Curator][curator] like logic as well, but that takes a lot of time, so pull requests are more than welcome! +Some [Curator][curator] recipes are available in the [recipes][recipes] directory. ## Examples Check the [examples][examples] directory -## Feature and Bug Handling -Also if you find a bug or would like to see a feature implemented please raise an issue or send a pull-request. - -## Documentation +## Features and Bugs +If you find a bug or would like to see a feature implemented please raise an issue or send a pull-request. [examples]: https://github.com/krojew/rust-zookeeper/tree/master/examples +[recipes]: https://github.com/krojew/rust-zookeeper/tree/master/src/recipes [javadoc]: https://zookeeper.apache.org/doc/r3.4.6/api/org/apache/zookeeper/ZooKeeper.html [curator]: http://curator.apache.org/ -## Build and develop +## Running tests ```shell cd zk-test-cluster mvn clean package cd .. cargo test ``` + ## Contributing All contributions are welcome! If you need some inspiration, please take a look at the currently open [issues](https://github.com/krojew/rust-zookeeper/issues).