This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add crates.io badge (#73) * update to tendermint v0.32 (#77) * Compatibility Table, Fix link in toml (#81) - Added table for compatiblity - fix link in toml - homepage link closes #58 & #74 Signed-off-by: Marko Baricevic <[email protected]> * Reduce amount of logs under `info` (#80) closes #78 - Reduce amount of logs to clean up terminal if just running the abci server Signed-off-by: Marko Baricevic <[email protected]> * Add changelog (#82) * Add changelog - Added a Changelog closes #65 Signed-off-by: Marko Baricevic <[email protected]> * Fix dynamic trait warning (#84) Update protobuf to 2.8 * Release/v0.6.1 (#85) * updated cargo + changelog * Fix edition + bump dependencies * fix changelog entry
- Loading branch information
Showing
10 changed files
with
377 additions
and
287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# CHANGELOG | ||
|
||
*August 23, 2019* | ||
|
||
Special thanks to external contributors on this release: @amanusk, @marbar3778 | ||
|
||
## v0.6.1 | ||
|
||
### BREAKING CHANGES: | ||
|
||
### FEATURES: | ||
|
||
### IMPROVEMENTS: | ||
|
||
- [\#84](https://github.com/tendermint/rust-abci/pull/84): Fix warning for dynamic trait objects | ||
|
||
- [\#80](https://github.com/tendermint/rust-abci/pull/80): Reduce amount of logs under `info` | ||
|
||
### BUG FIXES: | ||
|
||
*July 1, 2019* | ||
|
||
Special thanks to external contributors on this release: @liamsi | ||
|
||
## v0.6.0 | ||
|
||
### BREAKING CHANGES: | ||
|
||
- [\#79](https://github.com/tendermint/rust-abci/pull/79): Tendermint 0.32.\*'s ABCI compatibility | ||
|
||
### FEATURES: | ||
|
||
### IMPROVEMENTS: | ||
|
||
### BUG FIXES: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,25 @@ | ||
[package] | ||
name = "abci" | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = ["Adrian Brink <[email protected]>", "Jackson Lewis <[email protected]>", "Dave Bryson", "Tomas Tauber"] | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
description = "Tendermint ABCI server for Rust" | ||
homepage = "https://tendermint.com/docs/guides/app-development" | ||
homepage = "https://tendermint.com/docs/spec/abci/" | ||
repository = "https://github.com/tendermint/rust-abci" | ||
keywords = ["abci", "tendermint", "blockchain", "rust"] | ||
readme = "README.md" | ||
include = ["src/**/*", "Cargo.toml"] | ||
|
||
[dependencies] | ||
bytes = "0.4" | ||
protobuf = "2.6.2" | ||
byteorder = "1.2.7" | ||
protobuf = "2.8" | ||
byteorder = "1.3.2" | ||
integer-encoding = "1.0.5" | ||
log = "0.4.6" | ||
env_logger = "0.6.1" | ||
log = "0.4.8" | ||
env_logger = "0.6.2" | ||
tokio = "0.1" | ||
futures = "0.1" | ||
|
||
[build-dependencies] | ||
protobuf-codegen-pure = "2.6.2" | ||
protobuf-codegen-pure = "2.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.