Skip to content

Commit

Permalink
Update async-tls requirement from 0.10.2 to 0.11.0 (#1884)
Browse files Browse the repository at this point in the history
* Update async-tls requirement from 0.10.2 to 0.11.0

Updates the requirements on [async-tls](https://github.com/async-std/async-tls) to permit the latest version.
- [Release notes](https://github.com/async-std/async-tls/releases)
- [Commits](async-rs/async-tls@v0.10.2...v0.11.0)

Signed-off-by: dependabot[bot] <support@github.com>

* *: Prepare release

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Max Inden <mail@max-inden.de>
  • Loading branch information
dependabot[bot] and mxinden authored Dec 10, 2020
1 parent 7985c81 commit a26f6aa
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@
- [`parity-multiaddr` CHANGELOG](misc/multiaddr/CHANGELOG.md)
- [`libp2p-core-derive` CHANGELOG](misc/core-derive/CHANGELOG.md)

# Version 0.32.2 [2020-12-10]

- Update `libp2p-websocket`.

# Version 0.32.1 [2020-12-09]

- Update minimum patch version of `libp2p-websocket`.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "libp2p"
edition = "2018"
description = "Peer-to-peer networking library"
version = "0.32.1"
version = "0.32.2"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
Expand Down Expand Up @@ -88,7 +88,7 @@ libp2p-deflate = { version = "0.25.0", path = "protocols/deflate", optional = tr
libp2p-dns = { version = "0.25.0", path = "transports/dns", optional = true }
libp2p-mdns = { version = "0.26.0", path = "protocols/mdns", optional = true }
libp2p-tcp = { version = "0.25.1", path = "transports/tcp", optional = true }
libp2p-websocket = { version = "0.26.2", path = "transports/websocket", optional = true }
libp2p-websocket = { version = "0.26.3", path = "transports/websocket", optional = true }

[dev-dependencies]
async-std = "1.6.2"
Expand Down
4 changes: 4 additions & 0 deletions transports/websocket/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.26.3 [2020-12-10]

- Update `async-tls`.

# 0.26.2 [2020-12-09]

- Update minimum patch version for `async-tls`.
Expand Down
4 changes: 2 additions & 2 deletions transports/websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
name = "libp2p-websocket"
edition = "2018"
description = "WebSocket transport for libp2p"
version = "0.26.2"
version = "0.26.3"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p"
keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]

[dependencies]
async-tls = "0.10.2"
async-tls = "0.11.0"
either = "1.5.3"
futures = "0.3.1"
libp2p-core = { version = "0.25.0", path = "../../core" }
Expand Down

0 comments on commit a26f6aa

Please sign in to comment.