From 0626e2e329152c36c152e1ac9be6a0c66bb5ad3a Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Fri, 13 Oct 2023 15:29:38 +1100 Subject: [PATCH] docs: fix misc. errors around changelogs and manifests Detected by #4620. Pull-Request: #4630. --- Cargo.lock | 2 +- Cargo.toml | 2 +- misc/server/CHANGELOG.md | 29 ++++++++++-------------- transports/quic/Cargo.toml | 2 +- transports/websocket-websys/CHANGELOG.md | 4 ++-- 5 files changed, 17 insertions(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 96f5b8e7..ef31ddd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2918,7 +2918,7 @@ dependencies = [ [[package]] name = "libp2p-quic" -version = "0.9.2" +version = "0.9.3" dependencies = [ "async-std", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 5334d279..587b8970 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -95,7 +95,7 @@ libp2p-perf = { version = "0.2.0", path = "protocols/perf" } libp2p-ping = { version = "0.43.1", path = "protocols/ping" } libp2p-plaintext = { version = "0.40.1", path = "transports/plaintext" } libp2p-pnet = { version = "0.23.0", path = "transports/pnet" } -libp2p-quic = { version = "0.9.2", path = "transports/quic" } +libp2p-quic = { version = "0.9.3", path = "transports/quic" } libp2p-relay = { version = "0.16.1", path = "protocols/relay" } libp2p-rendezvous = { version = "0.13.0", path = "protocols/rendezvous" } libp2p-upnp = { version = "0.1.1", path = "protocols/upnp" } diff --git a/misc/server/CHANGELOG.md b/misc/server/CHANGELOG.md index 5fd4313f..60ef7f82 100644 --- a/misc/server/CHANGELOG.md +++ b/misc/server/CHANGELOG.md @@ -1,10 +1,5 @@ -# Changelog -All notable changes to this project will be documented in this file. +## 0.12.3 -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] ### Changed - Add libp2p-lookup to Dockerfile to enable healthchecks. @@ -16,14 +11,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [PR 4467]: https://github.com/libp2p/rust-libp2p/pull/4467 -## [0.12.2] +## 0.12.2 ### Fixed - Adhere to `--metrics-path` flag and listen on `0.0.0.0:8888` (default IPFS metrics port). [PR 4392] [PR 4392]: https://github.com/libp2p/rust-libp2p/pull/4392 -## [0.12.1] +## 0.12.1 ### Changed - Move to tokio and hyper. See [PR 4311]. @@ -32,40 +27,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [PR 4311]: https://github.com/libp2p/rust-libp2p/pull/4311 -## [0.8.0] +## 0.8.0 ### Changed - Remove mplex support. -## [0.7.0] +## 0.7.0 ### Changed - Update to libp2p v0.47.0. -## [0.6.0] - [2022-05-05] +## 0.6.0 - 2022-05-05 ### Changed - Update to libp2p v0.44.0. -## [0.5.4] - [2022-01-11] +## 0.5.4 - 2022-01-11 ### Changed - Pull latest autonat changes. -## [0.5.3] - [2021-12-25] +## 0.5.3 - 2021-12-25 ### Changed - Update dependencies. - Pull in autonat fixes. -## [0.5.2] - [2021-12-20] +## 0.5.2 - 2021-12-20 ### Added - Add support for libp2p autonat protocol via `--enable-autonat`. -## [0.5.1] - [2021-12-20] +## 0.5.1 - 2021-12-20 ### Fixed - Update dependencies. - Fix typo in command line flag `--enable-kademlia`. -## [0.5.0] - 2021-11-18 +## 0.5.0 - 2021-11-18 ### Changed - Disable Kademlia protocol by default. -## [0.4.0] - 2021-11-18 +## 0.4.0 - 2021-11-18 ### Fixed - Update dependencies. diff --git a/transports/quic/Cargo.toml b/transports/quic/Cargo.toml index 57c24067..39d025e8 100644 --- a/transports/quic/Cargo.toml +++ b/transports/quic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libp2p-quic" -version = "0.9.2" +version = "0.9.3" authors = ["Parity Technologies "] edition = "2021" rust-version = { workspace = true } diff --git a/transports/websocket-websys/CHANGELOG.md b/transports/websocket-websys/CHANGELOG.md index 22728548..1eb27b83 100644 --- a/transports/websocket-websys/CHANGELOG.md +++ b/transports/websocket-websys/CHANGELOG.md @@ -1,7 +1,7 @@ -# 0.2.0 - unreleased +## 0.2.0 - unreleased - Add Websys Websocket transport. -# 0.1.0 +## 0.1.0 - Crate claimed.