Skip to content

Commit

Permalink
feat(tls): Promote to v0.1.0
Browse files Browse the repository at this point in the history
Promotes `libp2p-tls` to `v0.1.0` thus removing the complexity of cargo's handling of `-alpha` releases for `libp2p-tls`.

Pull-Request: libp2p#3581.
  • Loading branch information
mxinden authored Mar 10, 2023
1 parent 0cad636 commit aedecf7
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
4 changes: 4 additions & 0 deletions libp2p/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
6 changes: 3 additions & 3 deletions libp2p/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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 }
Expand Down
6 changes: 5 additions & 1 deletion transports/quic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.

Expand Down
4 changes: 2 additions & 2 deletions transports/quic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"] }
Expand Down
4 changes: 4 additions & 0 deletions transports/tls/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion transports/tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down

0 comments on commit aedecf7

Please sign in to comment.