Skip to content

Commit

Permalink
v0.7.0-alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion committed Nov 15, 2019
1 parent b361d15 commit 1572ea0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.7.0 (UNRELEASED)

- Upgrade to `signatory` v0.16; `yubihsm` v0.29.0 ([#367])
- Use the `chacha20poly1305` crate for Secret Connection ([#366])
- Vendor Secret Connection impl back from `tendermint-rs` ([#365])
- Add timeout to TCP socket ([#364])
- Upgrade to `abscissa` v0.4 ([#362])
- Double signing detection and logging improvements ([#348])
- Log signing message type during attempted double sign events ([#347])

## [0.6.3] (2019-08-07)

- Detect and don't attempt to recover from PoisonError ([#345])
Expand Down Expand Up @@ -152,6 +162,13 @@ section in the Tendermint KMS YubiHSM docs:

- Initial "preview" release

[#367]: https://github.com/tendermint/kms/pull/367
[#366]: https://github.com/tendermint/kms/pull/366
[#365]: https://github.com/tendermint/kms/pull/365
[#364]: https://github.com/tendermint/kms/pull/364
[#362]: https://github.com/tendermint/kms/pull/362
[#348]: https://github.com/tendermint/kms/pull/348
[#347]: https://github.com/tendermint/kms/pull/347
[0.6.3]: https://github.com/tendermint/kms/pull/346
[#345]: https://github.com/tendermint/kms/pull/345
[0.6.2]: https://github.com/tendermint/kms/pull/343
Expand Down
2 changes: 1 addition & 1 deletion 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
@@ -1,7 +1,7 @@
[package]
name = "tmkms"
description = "Tendermint Key Management System"
version = "0.6.3" # Also update html_root_url in lib.rs when bumping this
version = "0.7.0-alpha1" # Also update html_root_url in lib.rs when bumping this
authors = ["Tony Arcieri <[email protected]>", "Ismail Khoffi <[email protected]>"]
license = "Apache-2.0"
homepage = "https://github.com/tendermint/kms/"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#![forbid(unsafe_code)]
#![deny(warnings, missing_docs, unused_qualifications)]
#![doc(html_root_url = "https://docs.rs/tmkms/0.6.3")]
#![doc(html_root_url = "https://docs.rs/tmkms/0.7.0-alpha1")]

#[cfg(not(any(feature = "softsign", feature = "yubihsm", feature = "ledgertm")))]
compile_error!(
Expand Down

0 comments on commit 1572ea0

Please sign in to comment.