Skip to content
This repository has been archived by the owner on Jun 3, 2020. It is now read-only.

Commit

Permalink
Merge pull request #280 from tendermint/tendermint-rs/v0.9.0
Browse files Browse the repository at this point in the history
tendermint-rs v0.9.0
  • Loading branch information
tarcieri committed Jun 25, 2019
2 parents 72ac6ae + 2084209 commit e2e157c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ yubihsm = { version = "0.26", features = ["setup", "usb"], optional = true }
zeroize = "0.9"

[dependencies.tendermint]
version = "0.8"
version = "0.9"
path = "tendermint-rs"
features = ["amino-types", "secret-connection"]

Expand Down
12 changes: 12 additions & 0 deletions tendermint-rs/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.9.0] (2019-06-24)

This release is compatible with [tendermint v0.31]

- Reject low order points in Secret Connection handshake ([#279])
- Add `RemoteErrorCode` enum ([#272])
- Add `msg_type()` accessor for signature types ([#271])

## [0.8.0] (2019-06-20)

This release is compatible with [tendermint v0.31]
Expand Down Expand Up @@ -73,6 +81,10 @@ This release is compatible with [tendermint v0.28]

- Initial release

[0.9.0]: https://github.com/tendermint/kms/pull/280
[#279]: https://github.com/tendermint/kms/pull/279
[#272]: https://github.com/tendermint/kms/pull/272
[#271]: https://github.com/tendermint/kms/pull/271
[0.8.0]: https://github.com/tendermint/kms/pull/269
[#268]: https://github.com/tendermint/kms/pull/268
[#267]: https://github.com/tendermint/kms/pull/267
Expand Down
2 changes: 1 addition & 1 deletion tendermint-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint"
version = "0.8.0" # Also update `html_root_url` in lib.rs when bumping this
version = "0.9.0" # Also update `html_root_url` in lib.rs when bumping this
license = "Apache-2.0"
homepage = "https://www.tendermint.com/"
repository = "https://github.com/tendermint/kms/tree/master/crates/tendermint"
Expand Down
2 changes: 1 addition & 1 deletion tendermint-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#![forbid(unsafe_code)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/kms/master/img/tendermint.png",
html_root_url = "https://docs.rs/tendermint/0.8.0"
html_root_url = "https://docs.rs/tendermint/0.9.0"
)]

#[cfg(feature = "amino-types")]
Expand Down

0 comments on commit e2e157c

Please sign in to comment.