docs: fix misc. errors around changelogs and manifests

Detected by #4620.

Pull-Request: #4630.
This commit is contained in:
Thomas Eizinger
2023-10-13 15:29:38 +11:00
committed by GitHub
parent 7120529c6d
commit 0626e2e329
5 changed files with 17 additions and 22 deletions

2
Cargo.lock generated
View File

@ -2918,7 +2918,7 @@ dependencies = [
[[package]] [[package]]
name = "libp2p-quic" name = "libp2p-quic"
version = "0.9.2" version = "0.9.3"
dependencies = [ dependencies = [
"async-std", "async-std",
"bytes", "bytes",

View File

@ -95,7 +95,7 @@ libp2p-perf = { version = "0.2.0", path = "protocols/perf" }
libp2p-ping = { version = "0.43.1", path = "protocols/ping" } libp2p-ping = { version = "0.43.1", path = "protocols/ping" }
libp2p-plaintext = { version = "0.40.1", path = "transports/plaintext" } libp2p-plaintext = { version = "0.40.1", path = "transports/plaintext" }
libp2p-pnet = { version = "0.23.0", path = "transports/pnet" } 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-relay = { version = "0.16.1", path = "protocols/relay" }
libp2p-rendezvous = { version = "0.13.0", path = "protocols/rendezvous" } libp2p-rendezvous = { version = "0.13.0", path = "protocols/rendezvous" }
libp2p-upnp = { version = "0.1.1", path = "protocols/upnp" } libp2p-upnp = { version = "0.1.1", path = "protocols/upnp" }

View File

@ -1,10 +1,5 @@
# Changelog ## 0.12.3
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]
### Changed ### Changed
- Add libp2p-lookup to Dockerfile to enable healthchecks. - 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 [PR 4467]: https://github.com/libp2p/rust-libp2p/pull/4467
## [0.12.2] ## 0.12.2
### Fixed ### Fixed
- Adhere to `--metrics-path` flag and listen on `0.0.0.0:8888` (default IPFS metrics port). - Adhere to `--metrics-path` flag and listen on `0.0.0.0:8888` (default IPFS metrics port).
[PR 4392] [PR 4392]
[PR 4392]: https://github.com/libp2p/rust-libp2p/pull/4392 [PR 4392]: https://github.com/libp2p/rust-libp2p/pull/4392
## [0.12.1] ## 0.12.1
### Changed ### Changed
- Move to tokio and hyper. - Move to tokio and hyper.
See [PR 4311]. 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 [PR 4311]: https://github.com/libp2p/rust-libp2p/pull/4311
## [0.8.0] ## 0.8.0
### Changed ### Changed
- Remove mplex support. - Remove mplex support.
## [0.7.0] ## 0.7.0
### Changed ### Changed
- Update to libp2p v0.47.0. - Update to libp2p v0.47.0.
## [0.6.0] - [2022-05-05] ## 0.6.0 - 2022-05-05
### Changed ### Changed
- Update to libp2p v0.44.0. - Update to libp2p v0.44.0.
## [0.5.4] - [2022-01-11] ## 0.5.4 - 2022-01-11
### Changed ### Changed
- Pull latest autonat changes. - Pull latest autonat changes.
## [0.5.3] - [2021-12-25] ## 0.5.3 - 2021-12-25
### Changed ### Changed
- Update dependencies. - Update dependencies.
- Pull in autonat fixes. - Pull in autonat fixes.
## [0.5.2] - [2021-12-20] ## 0.5.2 - 2021-12-20
### Added ### Added
- Add support for libp2p autonat protocol via `--enable-autonat`. - Add support for libp2p autonat protocol via `--enable-autonat`.
## [0.5.1] - [2021-12-20] ## 0.5.1 - 2021-12-20
### Fixed ### Fixed
- Update dependencies. - Update dependencies.
- Fix typo in command line flag `--enable-kademlia`. - Fix typo in command line flag `--enable-kademlia`.
## [0.5.0] - 2021-11-18 ## 0.5.0 - 2021-11-18
### Changed ### Changed
- Disable Kademlia protocol by default. - Disable Kademlia protocol by default.
## [0.4.0] - 2021-11-18 ## 0.4.0 - 2021-11-18
### Fixed ### Fixed
- Update dependencies. - Update dependencies.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libp2p-quic" name = "libp2p-quic"
version = "0.9.2" version = "0.9.3"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021" edition = "2021"
rust-version = { workspace = true } rust-version = { workspace = true }

View File

@ -1,7 +1,7 @@
# 0.2.0 - unreleased ## 0.2.0 - unreleased
- Add Websys Websocket transport. - Add Websys Websocket transport.
# 0.1.0 ## 0.1.0
- Crate claimed. - Crate claimed.