*: Update changelogs and cargo tomls for gossipsub change

This commit is contained in:
Max Inden 2021-01-20 10:50:23 +01:00
parent eac43d144f
commit bbd3df64ed
No known key found for this signature in database
GPG Key ID: 5403C5464810BC26
4 changed files with 12 additions and 3 deletions

View File

@ -23,6 +23,10 @@
- [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md)
- [`libp2p-core-derive` CHANGELOG](misc/core-derive/CHANGELOG.md)
# Version 0.35.0 [unreleased]
- Update `libp2p-gossipsub`.
# Version 0.34.0 [2021-01-12]
- Update `libp2p-core` and all dependent crates.

View File

@ -2,7 +2,7 @@
name = "libp2p"
edition = "2018"
description = "Peer-to-peer networking library"
version = "0.34.0"
version = "0.35.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
@ -64,7 +64,7 @@ lazy_static = "1.2"
libp2p-core = { version = "0.27.0", path = "core" }
libp2p-core-derive = { version = "0.21.0", path = "misc/core-derive" }
libp2p-floodsub = { version = "0.27.0", path = "protocols/floodsub", optional = true }
libp2p-gossipsub = { version = "0.27.0", path = "./protocols/gossipsub", optional = true }
libp2p-gossipsub = { version = "0.28.0", path = "./protocols/gossipsub", optional = true }
libp2p-identify = { version = "0.27.0", path = "protocols/identify", optional = true }
libp2p-kad = { version = "0.28.0", path = "protocols/kad", optional = true }
libp2p-mplex = { version = "0.27.0", path = "muxers/mplex", optional = true }

View File

@ -1,3 +1,8 @@
# 0.28.0 [unreleased]
- Prevent non-published messages being added to caches.
[PR 1930](https://github.com/libp2p/rust-libp2p/pull/1930)
# 0.27.0 [2021-01-12]
- Update dependencies.

View File

@ -2,7 +2,7 @@
name = "libp2p-gossipsub"
edition = "2018"
description = "Gossipsub protocol for libp2p"
version = "0.27.0"
version = "0.28.0"
authors = ["Age Manning <Age@AgeManning.com>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"