From d12d96b16647b977ea7fa720b0c40b9e9deae273 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Tue, 25 Jun 2019 14:16:27 +0200 Subject: [PATCH] Publish v0.9.2 with zeroize (#1186) * zeroize: Upgrade to v0.9 (#1179) * Publish v0.9.2 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- core/Cargo.toml | 4 ++-- protocols/noise/Cargo.toml | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e8bca5..dbbfce7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.9.2 (2019-06-25) + +- Updated `zeroize` to v0.9. + # Version 0.9.1 (2019-06-05) - `EitherOutput` now implements `Stream` and `Sink` if their variants also implement these traits. diff --git a/Cargo.toml b/Cargo.toml index 5d4a6e76..44e1a598 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p" edition = "2018" description = "Peer-to-peer networking library" -version = "0.9.1" +version = "0.9.2" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/core/Cargo.toml b/core/Cargo.toml index ab891911..ecf2defb 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p-core" edition = "2018" description = "Core traits and structs of libp2p" -version = "0.9.1" +version = "0.9.2" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -35,7 +35,7 @@ tokio-io = "0.1" wasm-timer = "0.1" unsigned-varint = "0.2" void = "1" -zeroize = "0.5" +zeroize = "0.9" [target.'cfg(not(any(target_os = "emscripten", target_os = "unknown")))'.dependencies] ring = { version = "0.14", features = ["use_heap"], default-features = false } diff --git a/protocols/noise/Cargo.toml b/protocols/noise/Cargo.toml index c6da6107..39006838 100644 --- a/protocols/noise/Cargo.toml +++ b/protocols/noise/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "libp2p-noise" description = "Cryptographic handshake protocol using the noise framework." -version = "0.7.0" +version = "0.7.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -20,7 +20,7 @@ ring = { version = "0.14", features = ["use_heap"], default-features = false } snow = { version = "0.5.2", features = ["ring-resolver"], default-features = false } tokio-io = "0.1" x25519-dalek = "0.5" -zeroize = "0.8" +zeroize = "0.9" [dev-dependencies] env_logger = "0.6"