From 600b6af31432dcb4ff727a165b9963fd8baeebfe Mon Sep 17 00:00:00 2001 From: Max Inden Date: Fri, 22 Sep 2023 13:02:02 +0200 Subject: [PATCH] chore: prepare non-breaking releases Crates to be released: - core - misc/futures-bounded - misc/server - misc/webrtc-utils - protocols/kad - protocols/ping - protocols/upnp - swarm - transports/webrtc-websys - transports/webrtc Pull-Request: #4537. --- core/CHANGELOG.md | 2 +- misc/futures-bounded/CHANGELOG.md | 2 +- misc/futures-bounded/Cargo.toml | 2 +- misc/server/CHANGELOG.md | 2 +- misc/webrtc-utils/CHANGELOG.md | 2 +- misc/webrtc-utils/Cargo.toml | 2 +- protocols/kad/CHANGELOG.md | 2 +- protocols/ping/CHANGELOG.md | 4 ++-- protocols/upnp/CHANGELOG.md | 2 +- protocols/upnp/Cargo.toml | 3 +-- swarm/CHANGELOG.md | 2 +- transports/webrtc-websys/CHANGELOG.md | 2 +- transports/webrtc-websys/Cargo.toml | 2 +- transports/webrtc/CHANGELOG.md | 2 +- 14 files changed, 15 insertions(+), 16 deletions(-) diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 2d5c47a1..ea7bc2bd 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.40.1 - unreleased +## 0.40.1 - Implement `Debug` for `StreamMuxerEvent`. See [PR 4426]. diff --git a/misc/futures-bounded/CHANGELOG.md b/misc/futures-bounded/CHANGELOG.md index 712e5543..bd05a0f8 100644 --- a/misc/futures-bounded/CHANGELOG.md +++ b/misc/futures-bounded/CHANGELOG.md @@ -1,3 +1,3 @@ -## 0.1.0 - unreleased +## 0.1.0 Initial release. diff --git a/misc/futures-bounded/Cargo.toml b/misc/futures-bounded/Cargo.toml index b2732262..fae7528a 100644 --- a/misc/futures-bounded/Cargo.toml +++ b/misc/futures-bounded/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/libp2p/rust-libp2p" keywords = ["futures", "async", "backpressure"] categories = ["data-structures", "asynchronous"] description = "Utilities for bounding futures in size and time." -publish = false # TEMP FIX until https://github.com/obi1kenobi/cargo-semver-checks-action/issues/53 is fixed. +publish = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/misc/server/CHANGELOG.md b/misc/server/CHANGELOG.md index 571d52c5..5fd4313f 100644 --- a/misc/server/CHANGELOG.md +++ b/misc/server/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.12.3] - unreleased +## [0.12.3] ### Changed - Add libp2p-lookup to Dockerfile to enable healthchecks. diff --git a/misc/webrtc-utils/CHANGELOG.md b/misc/webrtc-utils/CHANGELOG.md index d575ea87..c3485aa1 100644 --- a/misc/webrtc-utils/CHANGELOG.md +++ b/misc/webrtc-utils/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.1.0 - unreleased +## 0.1.0 - Initial release. See [PR 4248]. diff --git a/misc/webrtc-utils/Cargo.toml b/misc/webrtc-utils/Cargo.toml index 9fa13284..a3a5bef9 100644 --- a/misc/webrtc-utils/Cargo.toml +++ b/misc/webrtc-utils/Cargo.toml @@ -8,7 +8,7 @@ name = "libp2p-webrtc-utils" repository = "https://github.com/libp2p/rust-libp2p" rust-version = { workspace = true } version = "0.1.0" -publish = false # TEMP fix for https://github.com/obi1kenobi/cargo-semver-checks-action/issues/53. +publish = true [dependencies] bytes = "1" diff --git a/protocols/kad/CHANGELOG.md b/protocols/kad/CHANGELOG.md index 5106b82f..f89ca309 100644 --- a/protocols/kad/CHANGELOG.md +++ b/protocols/kad/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.44.5 - unreleased +## 0.44.5 - Migrate to `quick-protobuf-codec` crate for codec logic. See [PR 4501]. diff --git a/protocols/ping/CHANGELOG.md b/protocols/ping/CHANGELOG.md index 7b46cdc3..db68d375 100644 --- a/protocols/ping/CHANGELOG.md +++ b/protocols/ping/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.43.1 - unreleased +## 0.43.1 - Honor ping interval in case of errors. Previously, we would immediately open another ping stream if the current one failed. @@ -6,7 +6,7 @@ [PR 4423]: https://github.com/libp2p/rust-libp2p/pull/4423 -## 0.43.0 +## 0.43.0 - Raise MSRV to 1.65. See [PR 3715]. diff --git a/protocols/upnp/CHANGELOG.md b/protocols/upnp/CHANGELOG.md index 60d76c24..51d1510c 100644 --- a/protocols/upnp/CHANGELOG.md +++ b/protocols/upnp/CHANGELOG.md @@ -1,3 +1,3 @@ -## 0.1.0 - unreleased +## 0.1.0 - Initial version diff --git a/protocols/upnp/Cargo.toml b/protocols/upnp/Cargo.toml index ab20496a..53a3d2b7 100644 --- a/protocols/upnp/Cargo.toml +++ b/protocols/upnp/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" keywords = ["peer-to-peer", "libp2p", "networking"] categories = ["network-programming", "asynchronous"] -publish = false +publish = true [dependencies] futures = "0.3.28" @@ -22,4 +22,3 @@ tokio = { version = "1.29", default-features = false, features = ["rt"], optiona [features] tokio = ["igd-next/aio_tokio", "dep:tokio"] - diff --git a/swarm/CHANGELOG.md b/swarm/CHANGELOG.md index 06ddd740..2d5fcfe5 100644 --- a/swarm/CHANGELOG.md +++ b/swarm/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.43.4 - unreleased +## 0.43.4 - Implement `Debug` for event structs. See [PR 4426]. diff --git a/transports/webrtc-websys/CHANGELOG.md b/transports/webrtc-websys/CHANGELOG.md index f144aaf3..7c40c08f 100644 --- a/transports/webrtc-websys/CHANGELOG.md +++ b/transports/webrtc-websys/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.1.0-alpha - unreleased +## 0.1.0-alpha - Initial alpha release. See [PR 4248]. diff --git a/transports/webrtc-websys/Cargo.toml b/transports/webrtc-websys/Cargo.toml index 9c595071..19148068 100644 --- a/transports/webrtc-websys/Cargo.toml +++ b/transports/webrtc-websys/Cargo.toml @@ -9,7 +9,7 @@ name = "libp2p-webrtc-websys" repository = "https://github.com/libp2p/rust-libp2p" rust-version = { workspace = true } version = "0.1.0-alpha" -publish = false # TEMP fix for https://github.com/obi1kenobi/cargo-semver-checks-action/issues/53. +publish = true [dependencies] bytes = "1" diff --git a/transports/webrtc/CHANGELOG.md b/transports/webrtc/CHANGELOG.md index 78d32f52..710c2e31 100644 --- a/transports/webrtc/CHANGELOG.md +++ b/transports/webrtc/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.6.1-alpha - unreleased +## 0.6.1-alpha - Move common dependencies to `libp2p-webrtc-utils` crate. See [PR 4248].