Publish v0.9.2 with zeroize (#1186)

* zeroize: Upgrade to v0.9 (#1179)

* Publish v0.9.2
This commit is contained in:
Pierre Krieger 2019-06-25 14:16:27 +02:00 committed by GitHub
parent 9d0dfa56c0
commit d12d96b166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 5 deletions

View File

@ -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.

View File

@ -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 <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -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 <admin@parity.io>"]
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 }

View File

@ -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 <admin@parity.io>"]
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"