diff --git a/Cargo.toml b/Cargo.toml index bf9c3d17..e9023858 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abci-rs" -version = "0.6.0" +version = "0.7.0" authors = ["Devashish Dixit "] license = "MIT/Apache-2.0" description = "A Rust crate for creating ABCI applications" diff --git a/README.md b/README.md index 04acddcd..2c752270 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Add `abci-rs` in your `Cargo.toml`'s `dependencies` section: ```toml [dependencies] -abci-rs = "0.6" +abci-rs = "0.7" ``` Each ABCI application has to implement three core traits corresponding to all three ABCI connections, `Consensus`, diff --git a/src/lib.rs b/src/lib.rs index d5a68956..e7ada682 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ //! //! ```toml //! [dependencies] -//! abci-rs = "0.6" +//! abci-rs = "0.7" //! ``` //! //! Each ABCI application has to implement three core traits corresponding to all three ABCI connections, `Consensus`,