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

Bumped version of protobuf to 2.8.1 -- fixes #87 #89

Merged
merged 2 commits into from
Sep 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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:
- [\#87](https://github.com/tendermint/rust-abci/issues/87): 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
6 changes: 3 additions & 3 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,7 +13,7 @@ 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"
Expand All @@ -22,4 +22,4 @@ 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