Skip to content
This repository was archived by the owner on Mar 11, 2021. It is now read-only.

Release 0.6.2 #90

Merged
merged 12 commits into from
Sep 27, 2019
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# CHANGELOG

*September 25, 2019*

## v0.6.2

### BREAKING CHANGES:

### FEATURES:

### IMPROVEMENTS:

### BUG FIXES:
- [\#89](https://github.com/tendermint/rust-abci/pull/89): Version of protobuf specified to the latest one (2.8.1)

*August 23, 2019*

Special thanks to external contributors on this release: @amanusk, @marbar3778
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "abci"
version = "0.6.1"
version = "0.6.2"
authors = ["Adrian Brink <adrian@brink-holdings.com>", "Jackson Lewis <st.japa6@gmail.com>", "Dave Bryson", "Tomas Tauber"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand All @@ -13,13 +13,13 @@ include = ["src/**/*", "Cargo.toml"]

[dependencies]
bytes = "0.4"
protobuf = "2.8"
protobuf = "2.8.1"
byteorder = "1.3.2"
integer-encoding = "1.0.5"
log = "0.4.8"
env_logger = "0.6.2"
env_logger = "0.7.0"
tokio = "0.1"
futures = "0.1"

[build-dependencies]
protobuf-codegen-pure = "2.8"
protobuf-codegen-pure = "2.8.1"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To use this library to build your own ABCI apps in Rust you have to include the

```toml
[dependencies]
abci = "0.6.1"
abci = "0.6.2"
```

### Development
Expand Down Expand Up @@ -64,7 +64,7 @@ For a real life example of an ABCI application you can checkout [Cosmos SDK](htt

| Tendermint | Rust-abci |
| ---------- | :-------: |
| 0.32.2 | 0.6.1 |
| 0.32.2 | 0.6.2 |
| 0.31.7 | 0.5.4 |

## Documentation
Expand Down
Loading