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 #247 from tendermint/tendermint-rs/v0.7.0
Browse files Browse the repository at this point in the history
tendermint-rs v0.7.0
  • Loading branch information
tarcieri committed Apr 24, 2019
2 parents 0516491 + 5d958d0 commit ba31356
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 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 @@ -42,7 +42,7 @@ signatory-dalek = "0.11"
signatory-secp256k1 = "0.11"
subtle = "2"
subtle-encoding = { version = "0.3", features = ["bech32-preview"] }
tendermint = { version = "0.7.0-alpha1", path = "tendermint-rs", features = ["amino-types", "secret-connection"] }
tendermint = { version = "0.7", path = "tendermint-rs", features = ["amino-types", "secret-connection"] }
tiny-bip39 = "0.6"
wait-timeout = "0.2"
yubihsm = { version = "0.22", features = ["setup", "usb"], optional = true }
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.7.0] (2019-04-24)

This release is compatible with [tendermint v0.31]

- Initial JSONRPC over HTTP client + `/broadcast_tx_*` endpoints ([#243])
- Initial RPC support ([#235])
- Disallow a block height of 0 ([#234])

## [0.6.0] (2019-04-16)

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

- Initial release

[0.7.0]: https://github.com/tendermint/kms/pull/247
[#243]: https://github.com/tendermint/kms/pull/243
[#235]: https://github.com/tendermint/kms/pull/235
[#234]: https://github.com/tendermint/kms/pull/234
[0.6.0]: https://github.com/tendermint/kms/pull/229
[tendermint v0.31]: https://github.com/tendermint/tendermint/blob/master/CHANGELOG.md#v0310
[#228]: https://github.com/tendermint/kms/pull/228
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.7.0-alpha1" # Also update `html_root_url` in lib.rs when bumping this
version = "0.7.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
7 changes: 4 additions & 3 deletions tendermint-rs/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
//! Tendermint is a high-performance blockchain consensus engine that powers
//! Byzantine fault tolerant applications written in any programming language.
//! This crate provides types for representing information about Tendermint
//! blockchain networks, including chain IDs, block IDs, and block heights.
//! This crate provides core types for representing information about Tendermint
//! blockchain networks, including chain information types, secret connections,
//! and remote procedure calls (JSONRPC).

#![deny(
warnings,
Expand All @@ -14,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.6.0"
html_root_url = "https://docs.rs/tendermint/0.7.0"
)]

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

0 comments on commit ba31356

Please sign in to comment.