From 6143a33f185add1e8889d283c97947e7dfae41b4 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Wed, 20 Feb 2019 17:56:38 +0100 Subject: [PATCH] Fix version of noise (#966) --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- protocols/noise/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0be5bad8..3128c659 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.4.1 (2019-02-20) + +- Fixed wrong version of libp2p-noise. + # Version 0.4.0 (2019-02-20) - The `multiaddr!` macro has been moved to the `multiaddr` crate and is now reexported under the name `build_multiaddr!`. diff --git a/Cargo.toml b/Cargo.toml index 746a792d..3c55dbb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "libp2p" edition = "2018" description = "Peer-to-peer networking library" -version = "0.4.0" +version = "0.4.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" @@ -41,7 +41,7 @@ tokio-io = "0.1" [target.'cfg(not(any(target_os = "emscripten", target_os = "unknown")))'.dependencies] libp2p-dns = { version = "0.4.0", path = "./transports/dns" } libp2p-mdns = { version = "0.4.0", path = "./misc/mdns" } -libp2p-noise = { version = "0.1.0", path = "./protocols/noise" } +libp2p-noise = { version = "0.2.0", path = "./protocols/noise" } libp2p-tcp = { version = "0.4.0", path = "./transports/tcp" } [target.'cfg(any(target_os = "emscripten", target_os = "unknown"))'.dependencies] diff --git a/protocols/noise/Cargo.toml b/protocols/noise/Cargo.toml index c1b6a0c6..56fee030 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.1.0" +version = "0.2.0" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p"