Skip to content
This repository has been archived by the owner on Feb 25, 2021. It is now read-only.

Commit

Permalink
v0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion committed Oct 29, 2019
1 parent b11d7d6 commit 8607966
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 20 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.16.0] (2019-10-29)

- Use the `ecdsa` crate ([#178])
- Upgrade to zeroize 1.0 ([#176])
- Upgrade to `signature` and `ed25519` crates v1.0.0-pre.1 ([#177])

## [0.15.0] (2019-10-11)

- signatory-dalek: Upgrade `ed25519-dalek` to 1.0.0-pre.2 ([#173])
Expand Down Expand Up @@ -177,6 +183,10 @@

- Initial release

[0.16.0]: https://github.com/tendermint/signatory/pull/179
[#178]: https://github.com/tendermint/signatory/pull/178
[#177]: https://github.com/tendermint/signatory/pull/177
[#176]: https://github.com/tendermint/signatory/pull/176
[0.15.0]: https://github.com/tendermint/signatory/pull/174
[#173]: https://github.com/tendermint/signatory/pull/173
[#172]: https://github.com/tendermint/signatory/pull/172
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "signatory"
description = "Multi-provider elliptic curve digital signature library with ECDSA and Ed25519 support"
version = "0.15.0" # Also update html_root_url in lib.rs when bumping this
version = "0.16.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0 OR MIT"
authors = ["Tony Arcieri <[email protected]>"]
homepage = "https://github.com/tendermint/signatory"
Expand Down
6 changes: 3 additions & 3 deletions signatory-dalek/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "signatory-dalek"
description = "Signatory Ed25519 provider for ed25519-dalek"
version = "0.15.0" # Also update html_root_url in lib.rs when bumping this
version = "0.16.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0 OR MIT"
authors = ["Tony Arcieri <[email protected]>"]
homepage = "https://github.com/tendermint/signatory"
Expand All @@ -21,7 +21,7 @@ ed25519-dalek = { version = "1.0.0-pre.2", default-features = false }
sha2 = { version = "0.8", default-features = false }

[dependencies.signatory]
version = "0.15"
version = "0.16"
default-features = false
features = ["digest", "ed25519"]
path = ".."
Expand All @@ -30,7 +30,7 @@ path = ".."
criterion = "0.2"

[dev-dependencies.signatory]
version = "0.15"
version = "0.16"
default-features = false
features = ["digest", "ed25519", "test-vectors"]
path = ".."
Expand Down
2 changes: 1 addition & 1 deletion signatory-dalek/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/signatory/develop/img/signatory-rustacean.png",
html_root_url = "https://docs.rs/signatory-dalek/0.15.0"
html_root_url = "https://docs.rs/signatory-dalek/0.16.0"
)]

#[cfg(test)]
Expand Down
4 changes: 2 additions & 2 deletions signatory-ledger-tm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "signatory-ledger-tm"
description = "Signatory provider for Ledger Tendermint Validator app"
version = "0.15.0" # Also update html_root_url in lib.rs when bumping this
version = "0.16.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0 OR MIT"
authors = ["ZondaX GmbH <[email protected]>"]
homepage = "https://github.com/tendermint/signatory"
Expand All @@ -20,7 +20,7 @@ lazy_static = "1"
ledger-tendermint = "0.4"

[dependencies.signatory]
version = "0.15"
version = "0.16"
features = ["digest", "ed25519"]
path = ".."

Expand Down
2 changes: 1 addition & 1 deletion signatory-ledger-tm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/signatory/develop/img/signatory-rustacean.png",
html_root_url = "https://docs.rs/signatory-ledger-tm/0.15.0"
html_root_url = "https://docs.rs/signatory-ledger-tm/0.16.0"
)]

use ledger_tendermint::ledgertm::TendermintValidatorApp;
Expand Down
6 changes: 3 additions & 3 deletions signatory-ring/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "signatory-ring"
description = "Signatory ECDSA (NIST P-256) and Ed25519 provider for *ring*"
version = "0.15.0" # Also update html_root_url in lib.rs when bumping this
version = "0.16.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0 OR MIT"
authors = ["Tony Arcieri <[email protected]>"]
homepage = "https://github.com/tendermint/signatory"
Expand All @@ -19,7 +19,7 @@ maintenance = { status = "passively-maintained" }
ring = { version = "0.16", default-features = false }

[dependencies.signatory]
version = "0.15"
version = "0.16"
default-features = false
features = ["pkcs8"]
path = ".."
Expand All @@ -28,7 +28,7 @@ path = ".."
criterion = "0.2"

[dev-dependencies.signatory]
version = "0.15"
version = "0.16"
default-features = false
features = ["pkcs8", "test-vectors"]
path = ".."
Expand Down
2 changes: 1 addition & 1 deletion signatory-ring/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/signatory/develop/img/signatory-rustacean.png",
html_root_url = "https://docs.rs/signatory-ring/0.15.0"
html_root_url = "https://docs.rs/signatory-ring/0.16.0"
)]

#[cfg(test)]
Expand Down
6 changes: 3 additions & 3 deletions signatory-secp256k1/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "signatory-secp256k1"
description = "Signatory ECDSA provider for secp256k1-rs"
version = "0.15.0" # Also update html_root_url in lib.rs when bumping this
version = "0.16.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0 OR MIT"
authors = ["Tony Arcieri <[email protected]>"]
homepage = "https://github.com/tendermint/signatory"
Expand All @@ -20,15 +20,15 @@ secp256k1 = "0.15"
signature = { version = "1.0.0-pre.1", features = ["derive-preview"] }

[dependencies.signatory]
version = "0.15"
version = "0.16"
features = ["digest", "ecdsa", "sha2"]
path = ".."

[dev-dependencies]
criterion = "0.2"

[dev-dependencies.signatory]
version = "0.15"
version = "0.16"
default-features = false
features = ["digest", "ecdsa", "sha2", "test-vectors"]
path = ".."
Expand Down
2 changes: 1 addition & 1 deletion signatory-secp256k1/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/signatory/develop/img/signatory-rustacean.png",
html_root_url = "https://docs.rs/signatory-secp256k1/0.15.0"
html_root_url = "https://docs.rs/signatory-secp256k1/0.16.0"
)]

use secp256k1::{self, Secp256k1, SignOnly, VerifyOnly};
Expand Down
4 changes: 2 additions & 2 deletions signatory-sodiumoxide/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "signatory-sodiumoxide"
description = "Signatory Ed25519 provider for sodiumoxide"
version = "0.15.0" # Also update html_root_url in lib.rs when bumping this
version = "0.16.0" # Also update html_root_url in lib.rs when bumping this
license = "Apache-2.0 OR MIT"
authors = ["Tony Arcieri <[email protected]>"]
homepage = "https://github.com/tendermint/signatory"
Expand All @@ -19,7 +19,7 @@ maintenance = { status = "passively-maintained" }
sodiumoxide = "0.2"

[dependencies.signatory]
version = "0.15"
version = "0.16"
features = ["ed25519", "test-vectors"]
path = ".."

Expand Down
2 changes: 1 addition & 1 deletion signatory-sodiumoxide/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/signatory/develop/img/signatory-rustacean.png",
html_root_url = "https://docs.rs/signatory-sodiumoxide/0.15.0"
html_root_url = "https://docs.rs/signatory-sodiumoxide/0.16.0"
)]

#[cfg(test)]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
#![warn(missing_docs, rust_2018_idioms, unused_qualifications)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/tendermint/signatory/develop/img/signatory-rustacean.png",
html_root_url = "https://docs.rs/signatory/0.15.0"
html_root_url = "https://docs.rs/signatory/0.16.0"
)]

#[cfg(feature = "alloc")]
Expand Down

0 comments on commit 8607966

Please sign in to comment.