Skip to content

Commit

Permalink
Bump up version to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devashishdxt committed Jan 9, 2020
1 parent 21dcef8 commit 818fe22
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abci-rs"
version = "0.4.2"
version = "0.5.0"
authors = ["Devashish Dixit <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A Rust crate for creating ABCI applications"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add `abci-rs` in your `Cargo.toml`'s `dependencies` section:

```toml
[dependencies]
abci-rs = "0.4"
abci-rs = "0.5"
```

Each ABCI application has to implement three core traits corresponding to all three ABCI connections, `Consensus`,
Expand All @@ -53,7 +53,7 @@ To know more, go to `examples/` to see a sample ABCI application.
> Features `tokio` and `async-std` are mutually exclusive, i.e., only one of them can be enabled at a time. Compilation
will fail if either both of them are enabled or none of them are enabled.

## Supported Versions
## Minimum Supported Versions

- Tendermint v0.32.8
- ABCI v0.16.1
Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
//!
//! ```toml
//! [dependencies]
//! abci-rs = "0.4"
//! abci-rs = "0.5"
//! ```
//!
//! Each ABCI application has to implement three core traits corresponding to all three ABCI connections, `Consensus`,
Expand All @@ -52,10 +52,10 @@
//! > Note: Features `tokio` and `async-std` are mutually exclusive, i.e., only one of them can be enabled at a time. Compilation
//! will fail if either both of them are enabled or none of them are enabled.
//!
//! ## Supported Versions
//! ## Minimum Supported Versions
//!
//! - Tendermint v0.32.0
//! - ABCI v0.16.0
//! - Tendermint v0.32.8
//! - ABCI v0.16.1
#![cfg_attr(feature = "doc", feature(doc_cfg))]

#[cfg(all(feature = "async-std", feature = "tokio"))]
Expand Down

0 comments on commit 818fe22

Please sign in to comment.