Bump to 0.2.2 (#852)

This commit is contained in:
Pierre Krieger
2019-01-14 19:53:25 +01:00
committed by GitHub
parent 21d219ef45
commit 2b4d9786ac
3 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
# Version 0.2.2 (2019-01-14)
- Fixed improper dependencies versions causing deriving `NetworkBehaviour` to generate an error.
# Version 0.2.1 (2019-01-14)
- Added the `IntoNodeHandler` and `IntoProtocolsHandler` traits, allowing node handlers and protocol handlers to know the `PeerId` of the node they are interacting with.

View File

@ -2,7 +2,7 @@
name = "libp2p"
edition = "2018"
description = "Peer-to-peer networking library"
version = "0.2.1"
version = "0.2.2"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -26,8 +26,8 @@ libp2p-floodsub = { version = "0.2.0", path = "./protocols/floodsub" }
libp2p-ping = { version = "0.2.0", path = "./protocols/ping" }
libp2p-plaintext = { version = "0.2.0", path = "./protocols/plaintext" }
libp2p-ratelimit = { version = "0.2.0", path = "./transports/ratelimit" }
libp2p-core = { version = "0.2.0", path = "./core" }
libp2p-core-derive = { version = "0.2.0", path = "./misc/core-derive" }
libp2p-core = { version = "0.2.1", path = "./core" }
libp2p-core-derive = { version = "0.2.1", path = "./misc/core-derive" }
libp2p-secio = { version = "0.2.0", path = "./protocols/secio", default-features = false }
libp2p-uds = { version = "0.2.0", path = "./transports/uds" }
libp2p-websocket = { version = "0.2.0", path = "./transports/websocket", optional = true }

View File

@ -1,7 +1,7 @@
[package]
name = "libp2p-core-derive"
description = "Procedural macros of libp2p-core"
version = "0.2.0"
version = "0.2.1"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -16,5 +16,5 @@ syn = { version = "0.15.22", default-features = false, features = ["clone-impls"
quote = "0.6"
[dev-dependencies]
libp2p = { version = "0.2.0", path = "../.." }
libp2p = { version = "0.2.2", path = "../.." }
void = "1.0"