-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Prepare releases. #1640
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Prepare releases. #1640
Changes from 5 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
f9486d5
Prepare releases.
316b83e
Re-export libp2p-request-response from libp2p crate.
49c964f
Clean up changelogs.
9ebc4bc
Restore upper bounds.
42ef6c6
Version 0.21 for the root crate.
0f41888
Stricter lower bound in libp2p-websocket version in root crate.
6737bc2
Update misc/peer-id-generator/Cargo.toml
romanb be92dcb
Update release date.
6705393
Update misc/peer-id-generator/Cargo.toml
romanb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p" | ||
| edition = "2018" | ||
| description = "Peer-to-peer networking library" | ||
| version = "0.20.1" | ||
| version = "0.21.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
@@ -61,23 +61,23 @@ all-features = true | |
| bytes = "0.5" | ||
| futures = "0.3.1" | ||
| lazy_static = "1.2" | ||
| libp2p-core = { version = "0.19.2", path = "core" } | ||
| libp2p-core-derive = { version = "0.19.1", path = "misc/core-derive" } | ||
| libp2p-floodsub = { version = "0.19.1", path = "protocols/floodsub", optional = true } | ||
| libp2p-gossipsub = { version = "0.19.3", path = "./protocols/gossipsub", optional = true } | ||
| libp2p-identify = { version = "0.19.2", path = "protocols/identify", optional = true } | ||
| libp2p-kad = { version = "0.20.1", path = "protocols/kad", optional = true } | ||
| libp2p-mplex = { version = "0.19.2", path = "muxers/mplex", optional = true } | ||
| libp2p-noise = { version = "0.19.1", path = "protocols/noise", optional = true } | ||
| libp2p-ping = { version = "0.19.3", path = "protocols/ping", optional = true } | ||
| libp2p-plaintext = { version = "0.19.1", path = "protocols/plaintext", optional = true } | ||
| libp2p-core = { version = "0.20.0", path = "core" } | ||
| libp2p-core-derive = { version = "0.20.0", path = "misc/core-derive" } | ||
| libp2p-floodsub = { version = "0.20.0", path = "protocols/floodsub", optional = true } | ||
| libp2p-gossipsub = { version = "0.20.0", path = "./protocols/gossipsub", optional = true } | ||
| libp2p-identify = { version = "0.20.0", path = "protocols/identify", optional = true } | ||
| libp2p-kad = { version = "0.21.0", path = "protocols/kad", optional = true } | ||
| libp2p-mplex = { version = "0.20.0", path = "muxers/mplex", optional = true } | ||
| libp2p-noise = { version = "0.20.0", path = "protocols/noise", optional = true } | ||
| libp2p-ping = { version = "0.20.0", path = "protocols/ping", optional = true } | ||
| libp2p-plaintext = { version = "0.20.0", path = "protocols/plaintext", optional = true } | ||
| libp2p-pnet = { version = "0.19.1", path = "protocols/pnet", optional = true } | ||
| libp2p-request-response = { version = "0.1.0", path = "protocols/request-response", optional = true } | ||
| libp2p-secio = { version = "0.19.2", path = "protocols/secio", default-features = false, optional = true } | ||
| libp2p-swarm = { version = "0.19.1", path = "swarm" } | ||
| libp2p-uds = { version = "0.19.2", path = "transports/uds", optional = true } | ||
| libp2p-wasm-ext = { version = "0.19.0", path = "transports/wasm-ext", optional = true } | ||
| libp2p-yamux = { version = "0.19.1", path = "muxers/yamux", optional = true } | ||
| libp2p-secio = { version = "0.20.0", path = "protocols/secio", default-features = false, optional = true } | ||
| libp2p-swarm = { version = "0.20.0", path = "swarm" } | ||
| libp2p-uds = { version = "0.20.0", path = "transports/uds", optional = true } | ||
| libp2p-wasm-ext = { version = "0.20.0", path = "transports/wasm-ext", optional = true } | ||
| libp2p-yamux = { version = "0.20.0", path = "muxers/yamux", optional = true } | ||
| multiaddr = { package = "parity-multiaddr", version = "0.9.1", path = "misc/multiaddr" } | ||
| multihash = "0.11.0" | ||
| parking_lot = "0.10.0" | ||
|
|
@@ -86,10 +86,10 @@ smallvec = "1.0" | |
| wasm-timer = "0.2.4" | ||
|
|
||
| [target.'cfg(not(any(target_os = "emscripten", target_os = "wasi", target_os = "unknown")))'.dependencies] | ||
| libp2p-deflate = { version = "0.19.2", path = "protocols/deflate", optional = true } | ||
| libp2p-dns = { version = "0.19.0", path = "transports/dns", optional = true } | ||
| libp2p-mdns = { version = "0.19.2", path = "protocols/mdns", optional = true } | ||
| libp2p-tcp = { version = "0.19.2", path = "transports/tcp", optional = true } | ||
| libp2p-deflate = { version = "0.20.0", path = "protocols/deflate", optional = true } | ||
| libp2p-dns = { version = "0.20.0", path = "transports/dns", optional = true } | ||
| libp2p-mdns = { version = "0.20.0", path = "protocols/mdns", optional = true } | ||
| libp2p-tcp = { version = "0.20.0", path = "transports/tcp", optional = true } | ||
| libp2p-websocket = { version = "0.20.0", path = "transports/websocket", optional = true } | ||
|
|
||
| [dev-dependencies] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p-core" | ||
| edition = "2018" | ||
| description = "Core traits and structs of libp2p" | ||
| version = "0.19.2" | ||
| version = "0.20.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p-core-derive" | ||
| edition = "2018" | ||
| description = "Procedural macros of libp2p-core" | ||
| version = "0.19.1" | ||
| version = "0.20.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| # 0.9.1 [2020-06-22] | ||
|
|
||
| Updated dependencies. | ||
| - Updated dependencies. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| # 0.8.2 [2020-06-22] | ||
|
|
||
| Updated dependencies. | ||
| - Updated dependencies. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p-mplex" | ||
| edition = "2018" | ||
| description = "Mplex multiplexing protocol for libp2p" | ||
| version = "0.19.2" | ||
| version = "0.20.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
@@ -14,7 +14,7 @@ bytes = "0.5" | |
| fnv = "1.0" | ||
| futures = "0.3.1" | ||
| futures_codec = "0.4" | ||
| libp2p-core = { version = "0.19.2", path = "../../core" } | ||
| libp2p-core = { version = "0.20.0", path = "../../core" } | ||
| log = "0.4" | ||
| parking_lot = "0.10" | ||
| unsigned-varint = { version = "0.4", features = ["futures-codec"] } | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,9 @@ | ||
| # 0.20.0 [2020-06-30] | ||
|
|
||
| - Update `libp2p-core`, i.e. `StreamMuxer::poll_inbound` has been renamed | ||
| to `poll_event` and returns a `StreamMuxerEvent`. | ||
|
|
||
| # 0.19.1 [2020-06-22] | ||
|
|
||
| Deprecated method `Yamux::is_remote_acknowledged` has been removed | ||
| as part of [PR 1616](https://github.com/libp2p/rust-libp2p/pull/1616). | ||
| - Deprecated method `Yamux::is_remote_acknowledged` has been removed | ||
| as part of [PR 1616](https://github.com/libp2p/rust-libp2p/pull/1616). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p-yamux" | ||
| edition = "2018" | ||
| description = "Yamux multiplexing protocol for libp2p" | ||
| version = "0.19.1" | ||
| version = "0.20.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
@@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] | |
|
|
||
| [dependencies] | ||
| futures = "0.3.1" | ||
| libp2p-core = { version = "0.19.2", path = "../../core" } | ||
| libp2p-core = { version = "0.20.0", path = "../../core" } | ||
| parking_lot = "0.10" | ||
| thiserror = "1.0" | ||
| yamux = "0.4.5" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| # 0.20.0 [2020-06-30] | ||
|
|
||
| - Updated dependencies. | ||
|
|
||
| # 0.19.2 [2020-06-22] | ||
|
|
||
| Updated dependencies. | ||
| - Updated dependencies. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p-deflate" | ||
| edition = "2018" | ||
| description = "Deflate encryption protocol for libp2p" | ||
| version = "0.19.2" | ||
| version = "0.20.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
@@ -11,7 +11,7 @@ categories = ["network-programming", "asynchronous"] | |
|
|
||
| [dependencies] | ||
| futures = "0.3.1" | ||
| libp2p-core = { version = "0.19.2", path = "../../core" } | ||
| libp2p-core = { version = "0.20.0", path = "../../core" } | ||
| flate2 = "1.0" | ||
|
|
||
| [dev-dependencies] | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| # 0.20.0 [2020-06-30] | ||
|
|
||
| - Updated dependencies. | ||
|
|
||
| # 0.19.1 [2020-06-22] | ||
|
|
||
| Updated dependencies. | ||
| - Updated dependencies. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p-floodsub" | ||
| edition = "2018" | ||
| description = "Floodsub protocol for libp2p" | ||
| version = "0.19.1" | ||
| version = "0.20.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
@@ -13,8 +13,8 @@ categories = ["network-programming", "asynchronous"] | |
| cuckoofilter = "0.3.2" | ||
| fnv = "1.0" | ||
| futures = "0.3.1" | ||
| libp2p-core = { version = "0.19.2", path = "../../core" } | ||
| libp2p-swarm = { version = "0.19.1", path = "../../swarm" } | ||
| libp2p-core = { version = "0.20.0", path = "../../core" } | ||
| libp2p-swarm = { version = "0.20.0", path = "../../swarm" } | ||
| prost = "0.6.1" | ||
| rand = "0.7" | ||
| smallvec = "1.0" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,11 @@ | ||
| # 0.20.0 [2020-06-30] | ||
|
|
||
| - Updated dependencies. | ||
|
|
||
| # 0.19.3 [2020-06-23] | ||
|
|
||
| Maintenance release fixing linter warnings. | ||
| - Maintenance release fixing linter warnings. | ||
|
|
||
| # 0.19.2 [2020-06-22] | ||
|
|
||
| Updated dependencies. | ||
| - Updated dependencies. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,16 +2,16 @@ | |
| name = "libp2p-gossipsub" | ||
| edition = "2018" | ||
| description = "Gossipsub protocol for libp2p" | ||
| version = "0.19.3" | ||
| version = "0.20.0" | ||
| authors = ["Age Manning <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
| keywords = ["peer-to-peer", "libp2p", "networking"] | ||
| categories = ["network-programming", "asynchronous"] | ||
|
|
||
| [dependencies] | ||
| libp2p-swarm = { version = "0.19.1", path = "../../swarm" } | ||
| libp2p-core = { version = "0.19.2", path = "../../core" } | ||
| libp2p-swarm = { version = "0.20.0", path = "../../swarm" } | ||
| libp2p-core = { version = "0.20.0", path = "../../core" } | ||
| bytes = "0.5.4" | ||
| byteorder = "1.3.2" | ||
| fnv = "1.0.6" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| # 0.20.0 [2020-06-30] | ||
|
|
||
| - Updated dependencies. | ||
|
|
||
| # 0.19.2 [2020-06-22] | ||
|
|
||
| Updated dependencies. | ||
| - Updated dependencies. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p-identify" | ||
| edition = "2018" | ||
| description = "Nodes identifcation protocol for libp2p" | ||
| version = "0.19.2" | ||
| version = "0.20.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
@@ -11,8 +11,8 @@ categories = ["network-programming", "asynchronous"] | |
|
|
||
| [dependencies] | ||
| futures = "0.3.1" | ||
| libp2p-core = { version = "0.19.2", path = "../../core" } | ||
| libp2p-swarm = { version = "0.19.1", path = "../../swarm" } | ||
| libp2p-core = { version = "0.20.0", path = "../../core" } | ||
| libp2p-swarm = { version = "0.20.0", path = "../../swarm" } | ||
| log = "0.4.1" | ||
| prost = "0.6.1" | ||
| smallvec = "1.0" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| name = "libp2p-kad" | ||
| edition = "2018" | ||
| description = "Kademlia protocol for libp2p" | ||
| version = "0.20.1" | ||
| version = "0.21.0" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
| repository = "https://github.com/libp2p/rust-libp2p" | ||
|
|
@@ -17,8 +17,8 @@ fnv = "1.0" | |
| futures_codec = "0.4" | ||
| futures = "0.3.1" | ||
| log = "0.4" | ||
| libp2p-core = { version = "0.19.2", path = "../../core" } | ||
| libp2p-swarm = { version = "0.19.1", path = "../../swarm" } | ||
| libp2p-core = { version = "0.20.0", path = "../../core" } | ||
| libp2p-swarm = { version = "0.20.0", path = "../../swarm" } | ||
| multihash = "0.11.0" | ||
| prost = "0.6.1" | ||
| rand = "0.7.2" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| # 0.20.0 [2020-06-30] | ||
|
|
||
| - Updated dependencies. | ||
|
|
||
| # 0.19.2 [2020-06-22] | ||
|
|
||
| Updated dependencies. | ||
| - Updated dependencies. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| [package] | ||
| name = "libp2p-mdns" | ||
| edition = "2018" | ||
| version = "0.19.2" | ||
| version = "0.20.0" | ||
| description = "Implementation of the libp2p mDNS discovery method" | ||
| authors = ["Parity Technologies <[email protected]>"] | ||
| license = "MIT" | ||
|
|
@@ -16,8 +16,8 @@ dns-parser = "0.8" | |
| either = "1.5.3" | ||
| futures = "0.3.1" | ||
| lazy_static = "1.2" | ||
| libp2p-core = { version = "0.19.2", path = "../../core" } | ||
| libp2p-swarm = { version = "0.19.1", path = "../../swarm" } | ||
| libp2p-core = { version = "0.20.0", path = "../../core" } | ||
| libp2p-swarm = { version = "0.20.0", path = "../../swarm" } | ||
| log = "0.4" | ||
| net2 = "0.2" | ||
| rand = "0.7" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.