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

tendermint-rs v0.5.0 #220

Merged
merged 1 commit into from
Mar 13, 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
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.

9 changes: 8 additions & 1 deletion tendermint-rs/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
## 0.5.0 (TBD)
## [0.5.0] (2019-03-13)

- Rename `SecretConnectionKey` to `secret_connection::PublicKey`, add
`secret_connection::PeerId` ([#219])
- Move `ConsensusState` under `chain::state` ([#205])

## 0.4.0 (N/A)

Expand Down Expand Up @@ -49,4 +53,7 @@ This release is compatible with tendermint [v0.28]

- Initial release

[0.5.0]: https://github.com/tendermint/kms/pull/220
[#219]: https://github.com/tendermint/kms/pull/219
[#205]: https://github.com/tendermint/kms/pull/219
[#181]: https://github.com/tendermint/kms/pull/181
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.5.0-alpha1" # Also update `html_root_url` in lib.rs when bumping this
version = "0.5.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 @@ -16,7 +16,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.5.0-alpha1"
html_root_url = "https://docs.rs/tendermint/0.5.0"
)]

#[macro_use]
Expand Down