mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-05-16 12:51:21 +00:00
feat(tls): Promote to v0.1.0
Promotes `libp2p-tls` to `v0.1.0` thus removing the complexity of cargo's handling of `-alpha` releases for `libp2p-tls`. Pull-Request: #3581.
This commit is contained in:
parent
0cad636eba
commit
aedecf709c
@ -45,6 +45,10 @@
|
||||
|
||||
# `libp2p` facade crate
|
||||
|
||||
# 0.51.1 [unreleased]
|
||||
|
||||
- Depend on `libp2p-tls` `v0.1.0`.
|
||||
|
||||
# 0.51.0
|
||||
|
||||
- Enable `NetworkBehaviour`s to manage connections.
|
||||
|
@ -3,7 +3,7 @@ name = "libp2p"
|
||||
edition = "2021"
|
||||
rust-version = "1.65.0"
|
||||
description = "Peer-to-peer networking library"
|
||||
version = "0.51.0"
|
||||
version = "0.51.1"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
license = "MIT"
|
||||
repository = "https://github.com/libp2p/rust-libp2p"
|
||||
@ -117,9 +117,9 @@ pin-project = "1.0.0"
|
||||
libp2p-deflate = { version = "0.39.0", path = "../transports/deflate", optional = true }
|
||||
libp2p-dns = { version = "0.39.0", path = "../transports/dns", optional = true }
|
||||
libp2p-mdns = { version = "0.43.0", path = "../protocols/mdns", optional = true }
|
||||
libp2p-quic = { version = "=0.7.0-alpha.2", path = "../transports/quic", optional = true }
|
||||
libp2p-quic = { version = "=0.7.0-alpha.3", path = "../transports/quic", optional = true }
|
||||
libp2p-tcp = { version = "0.39.0", path = "../transports/tcp", optional = true }
|
||||
libp2p-tls = { version = "=0.1.0-alpha.2", path = "../transports/tls", optional = true }
|
||||
libp2p-tls = { version = "0.1.0", path = "../transports/tls", optional = true }
|
||||
libp2p-uds = { version = "0.38.0", path = "../transports/uds", optional = true }
|
||||
libp2p-webrtc = { version = "=0.4.0-alpha.3", path = "../transports/webrtc", optional = true }
|
||||
libp2p-websocket = { version = "0.41.0", path = "../transports/websocket", optional = true }
|
||||
|
@ -1,6 +1,10 @@
|
||||
# 0.7.0-alpha.3
|
||||
|
||||
- Depend `libp2p-tls` `v0.1.0`.
|
||||
|
||||
# 0.7.0-alpha.2
|
||||
|
||||
- Update to `libp2p-tls` `v0.2.0`.
|
||||
- Update to `libp2p-tls` `v0.1.0-alpha.2`.
|
||||
|
||||
- Update to `libp2p-core` `v0.39.0`.
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "libp2p-quic"
|
||||
version = "0.7.0-alpha.2"
|
||||
version = "0.7.0-alpha.3"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.62.0"
|
||||
@ -15,7 +15,7 @@ futures = "0.3.26"
|
||||
futures-timer = "3.0.2"
|
||||
if-watch = "3.0.0"
|
||||
libp2p-core = { version = "0.39.0", path = "../../core" }
|
||||
libp2p-tls = { version = "=0.1.0-alpha.2", path = "../tls" }
|
||||
libp2p-tls = { version = "0.1.0", path = "../tls" }
|
||||
log = "0.4"
|
||||
parking_lot = "0.12.0"
|
||||
quinn-proto = { version = "0.9.0", default-features = false, features = ["tls-rustls"] }
|
||||
|
@ -1,3 +1,7 @@
|
||||
# 0.1.0 [unreleased]
|
||||
|
||||
- Promote to `v0.1.0`.
|
||||
|
||||
# 0.1.0-alpha.2
|
||||
|
||||
- Update to `libp2p-core` `v0.39.0`.
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "libp2p-tls"
|
||||
version = "0.1.0-alpha.2"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.60.0"
|
||||
description = "TLS configuration based on libp2p TLS specs."
|
||||
|
Loading…
x
Reference in New Issue
Block a user