fix: move changelog entries to correct version

Whilst https://github.com/libp2p/rust-libp2p/pull/3312 was in development, we pushed a new release out and forgot to move the changelog entries to the new version. Unfortunately, this is all still very manual until we have a solution for https://github.com/libp2p/rust-libp2p/issues/2902 so this stuff keeps happening.

Pull-Request: #3541.
This commit is contained in:
Thomas Eizinger 2023-03-10 21:59:49 +11:00 committed by GitHub
parent c06731bc38
commit 0cad636eba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 85 additions and 52 deletions

View File

@ -1,11 +1,15 @@
# 0.39.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3221]: https://github.com/libp2p/rust-libp2p/pull/3221
# 0.39.0 # 0.39.0
- Move `ConnectionId` to `libp2p-swarm`. See [PR 3221]. - Move `ConnectionId` to `libp2p-swarm`. See [PR 3221].
- Move `PendingPoint` to `libp2p-swarm` and make it crate-private. See [PR 3221]. - Move `PendingPoint` to `libp2p-swarm` and make it crate-private. See [PR 3221].
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312 [PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
[PR 3221]: https://github.com/libp2p/rust-libp2p/pull/3221
# 0.38.0 # 0.38.0

View File

@ -3,7 +3,7 @@ name = "libp2p-core"
edition = "2021" edition = "2021"
rust-version = "1.60.0" rust-version = "1.60.0"
description = "Core traits and structs of libp2p" description = "Core traits and structs of libp2p"
version = "0.39.0" version = "0.39.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -121,7 +121,7 @@ libp2p-quic = { version = "=0.7.0-alpha.2", path = "../transports/quic", optiona
libp2p-tcp = { version = "0.39.0", path = "../transports/tcp", 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-alpha.2", path = "../transports/tls", optional = true }
libp2p-uds = { version = "0.38.0", path = "../transports/uds", optional = true } libp2p-uds = { version = "0.38.0", path = "../transports/uds", optional = true }
libp2p-webrtc = { version = "=0.4.0-alpha.2", path = "../transports/webrtc", 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 } libp2p-websocket = { version = "0.41.0", path = "../transports/websocket", optional = true }
[target.'cfg(not(target_os = "unknown"))'.dependencies] [target.'cfg(not(target_os = "unknown"))'.dependencies]

View File

@ -1,3 +1,9 @@
# 0.10.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3153]: https://github.com/libp2p/rust-libp2p/pull/3153
# 0.10.0 # 0.10.0
- Update to `libp2p-core` `v0.39.0`. - Update to `libp2p-core` `v0.39.0`.
@ -8,10 +14,7 @@
- Update to `libp2p-swarm` `v0.42.0`. - Update to `libp2p-swarm` `v0.42.0`.
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312 [PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
[PR 3153]: https://github.com/libp2p/rust-libp2p/pull/3153
# 0.9.1 # 0.9.1

View File

@ -3,7 +3,7 @@ name = "libp2p-autonat"
edition = "2021" edition = "2021"
rust-version = "1.62.0" rust-version = "1.62.0"
description = "NAT and firewall detection for libp2p" description = "NAT and firewall detection for libp2p"
version = "0.10.0" version = "0.10.1"
authors = ["David Craven <david@craven.ch>", "Elena Frank <elena.frank@protonmail.com>"] authors = ["David Craven <david@craven.ch>", "Elena Frank <elena.frank@protonmail.com>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,3 +1,9 @@
# 0.9.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.9.0 # 0.9.0
- Update to `libp2p-core` `v0.39.0`. - Update to `libp2p-core` `v0.39.0`.
@ -11,13 +17,10 @@
- Rename types in public API to follow naming conventions defined in [issue 2217]. See [PR 3214]. - Rename types in public API to follow naming conventions defined in [issue 2217]. See [PR 3214].
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3213]: https://github.com/libp2p/rust-libp2p/pull/3213 [PR 3213]: https://github.com/libp2p/rust-libp2p/pull/3213
[PR 3153]: https://github.com/libp2p/rust-libp2p/pull/3153 [PR 3153]: https://github.com/libp2p/rust-libp2p/pull/3153
[issue 2217]: https://github.com/libp2p/rust-libp2p/issues/2217 [issue 2217]: https://github.com/libp2p/rust-libp2p/issues/2217
[PR 3214]: https://github.com/libp2p/rust-libp2p/pull/3214 [PR 3214]: https://github.com/libp2p/rust-libp2p/pull/3214
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.8.1 # 0.8.1

View File

@ -3,7 +3,7 @@ name = "libp2p-dcutr"
edition = "2021" edition = "2021"
rust-version = "1.62.0" rust-version = "1.62.0"
description = "Direct connection upgrade through relay" description = "Direct connection upgrade through relay"
version = "0.9.0" version = "0.9.1"
authors = ["Max Inden <mail@max-inden.de>"] authors = ["Max Inden <mail@max-inden.de>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,13 +1,15 @@
# 0.42.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.42.0 # 0.42.0
- Update to `libp2p-core` `v0.39.0`. - Update to `libp2p-core` `v0.39.0`.
- Update to `libp2p-swarm` `v0.42.0`. - Update to `libp2p-swarm` `v0.42.0`.
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.41.0 # 0.41.0
- Update to `libp2p-core` `v0.38.0`. - Update to `libp2p-core` `v0.38.0`.

View File

@ -3,7 +3,7 @@ name = "libp2p-floodsub"
edition = "2021" edition = "2021"
rust-version = "1.62.0" rust-version = "1.62.0"
description = "Floodsub protocol for libp2p" description = "Floodsub protocol for libp2p"
version = "0.42.0" version = "0.42.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,3 +1,9 @@
# 0.44.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.44.0 # 0.44.0
- Update to `prometheus-client` `v0.19.0`. See [PR 3207]. - Update to `prometheus-client` `v0.19.0`. See [PR 3207].
@ -14,13 +20,10 @@
It is preferred to import the gossipsub protocol as a module (`use libp2p::gossipsub;`), and refer to its types via `gossipsub::`. It is preferred to import the gossipsub protocol as a module (`use libp2p::gossipsub;`), and refer to its types via `gossipsub::`.
For example: `gossipsub::Behaviour` or `gossipsub::RawMessage`. See [PR 3303]. For example: `gossipsub::Behaviour` or `gossipsub::RawMessage`. See [PR 3303].
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3207]: https://github.com/libp2p/rust-libp2p/pull/3207/ [PR 3207]: https://github.com/libp2p/rust-libp2p/pull/3207/
[PR 3303]: https://github.com/libp2p/rust-libp2p/pull/3303/ [PR 3303]: https://github.com/libp2p/rust-libp2p/pull/3303/
[PR 3381]: https://github.com/libp2p/rust-libp2p/pull/3381/ [PR 3381]: https://github.com/libp2p/rust-libp2p/pull/3381/
[discussion 2174]: https://github.com/libp2p/rust-libp2p/discussions/2174 [discussion 2174]: https://github.com/libp2p/rust-libp2p/discussions/2174
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.43.0 # 0.43.0

View File

@ -3,7 +3,7 @@ name = "libp2p-gossipsub"
edition = "2021" edition = "2021"
rust-version = "1.62.0" rust-version = "1.62.0"
description = "Gossipsub protocol for libp2p" description = "Gossipsub protocol for libp2p"
version = "0.44.0" version = "0.44.1"
authors = ["Age Manning <Age@AgeManning.com>"] authors = ["Age Manning <Age@AgeManning.com>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,3 +1,9 @@
# 0.42.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.42.0 # 0.42.0
- Update to `libp2p-core` `v0.39.0`. - Update to `libp2p-core` `v0.39.0`.
@ -9,11 +15,8 @@
- Don't close the stream when reading the identify info in `protocol::recv`. See [PR 3344]. - Don't close the stream when reading the identify info in `protocol::recv`. See [PR 3344].
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3208]: https://github.com/libp2p/rust-libp2p/pull/3208 [PR 3208]: https://github.com/libp2p/rust-libp2p/pull/3208
[PR 3344]: https://github.com/libp2p/rust-libp2p/pull/3344 [PR 3344]: https://github.com/libp2p/rust-libp2p/pull/3344
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.41.1 # 0.41.1

View File

@ -3,7 +3,7 @@ name = "libp2p-identify"
edition = "2021" edition = "2021"
rust-version = "1.62.0" rust-version = "1.62.0"
description = "Nodes identifcation protocol for libp2p" description = "Nodes identifcation protocol for libp2p"
version = "0.42.0" version = "0.42.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,3 +1,9 @@
# 0.43.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.43.0 # 0.43.0
- Update to `libp2p-core` `v0.39.0`. - Update to `libp2p-core` `v0.39.0`.
@ -10,11 +16,8 @@
- Bump MSRV to 1.65.0. - Bump MSRV to 1.65.0.
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3239]: https://github.com/libp2p/rust-libp2p/pull/3239 [PR 3239]: https://github.com/libp2p/rust-libp2p/pull/3239
[PR 3287]: https://github.com/libp2p/rust-libp2p/pull/3287 [PR 3287]: https://github.com/libp2p/rust-libp2p/pull/3287
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.42.1 # 0.42.1

View File

@ -3,7 +3,7 @@ name = "libp2p-kad"
edition = "2021" edition = "2021"
rust-version = "1.65.0" rust-version = "1.65.0"
description = "Kademlia protocol for libp2p" description = "Kademlia protocol for libp2p"
version = "0.43.0" version = "0.43.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,3 +1,9 @@
# 0.15.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.15.0 # 0.15.0
- Rename types as per [discussion 2174]. - Rename types as per [discussion 2174].
@ -11,11 +17,8 @@
- Update to `libp2p-swarm` `v0.42.0`. - Update to `libp2p-swarm` `v0.42.0`.
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3238]: https://github.com/libp2p/rust-libp2p/pull/3238 [PR 3238]: https://github.com/libp2p/rust-libp2p/pull/3238
[discussion 2174]: https://github.com/libp2p/rust-libp2p/issues/2174 [discussion 2174]: https://github.com/libp2p/rust-libp2p/issues/2174
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.14.0 # 0.14.0

View File

@ -3,7 +3,7 @@ name = "libp2p-relay"
edition = "2021" edition = "2021"
rust-version = "1.62.0" rust-version = "1.62.0"
description = "Communications relaying for libp2p" description = "Communications relaying for libp2p"
version = "0.15.0" version = "0.15.1"
authors = ["Parity Technologies <admin@parity.io>", "Max Inden <mail@max-inden.de>"] authors = ["Parity Technologies <admin@parity.io>", "Max Inden <mail@max-inden.de>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,13 +1,15 @@
# 0.12.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.12.0 # 0.12.0
- Update to `libp2p-core` `v0.39.0`. - Update to `libp2p-core` `v0.39.0`.
- Update to `libp2p-swarm` `v0.42.0`. - Update to `libp2p-swarm` `v0.42.0`.
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.11.0 # 0.11.0
- De- and encode protobuf messages using `prost-codec`. See [PR 3058]. - De- and encode protobuf messages using `prost-codec`. See [PR 3058].

View File

@ -3,7 +3,7 @@ name = "libp2p-rendezvous"
edition = "2021" edition = "2021"
rust-version = "1.62.0" rust-version = "1.62.0"
description = "Rendezvous protocol for libp2p" description = "Rendezvous protocol for libp2p"
version = "0.12.0" version = "0.12.1"
authors = ["The COMIT guys <hello@comit.network>"] authors = ["The COMIT guys <hello@comit.network>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,3 +1,9 @@
# 0.42.1 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.42.0 # 0.42.0
- Update to `libp2p-core` `v0.39.0`. - Update to `libp2p-core` `v0.39.0`.
@ -6,11 +12,8 @@
- Deprecate `LegacyConfig` without replacement. See [PR 3265]. - Deprecate `LegacyConfig` without replacement. See [PR 3265].
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3227]: https://github.com/libp2p/rust-libp2p/pull/3227 [PR 3227]: https://github.com/libp2p/rust-libp2p/pull/3227
[PR 3265]: https://github.com/libp2p/rust-libp2p/pull/3265 [PR 3265]: https://github.com/libp2p/rust-libp2p/pull/3265
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.41.0 # 0.41.0

View File

@ -3,7 +3,7 @@ name = "libp2p-noise"
edition = "2021" edition = "2021"
rust-version = "1.60.0" rust-version = "1.60.0"
description = "Cryptographic handshake protocol using the noise framework." description = "Cryptographic handshake protocol using the noise framework."
version = "0.42.0" version = "0.42.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,11 +1,13 @@
# 0.39.0 # 0.39.1 - unreleased
- Update to `libp2p-core` `v0.39.0`.
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312]. - Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312 [PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.39.0
- Update to `libp2p-core` `v0.39.0`.
# 0.38.0 # 0.38.0
- Add more specific error reporting and remove `prost::Error` from public API. See [PR 3058]. - Add more specific error reporting and remove `prost::Error` from public API. See [PR 3058].

View File

@ -3,7 +3,7 @@ name = "libp2p-plaintext"
edition = "2021" edition = "2021"
rust-version = "1.60.0" rust-version = "1.60.0"
description = "Plaintext encryption dummy protocol for libp2p" description = "Plaintext encryption dummy protocol for libp2p"
version = "0.39.0" version = "0.39.1"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT" license = "MIT"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"

View File

@ -1,13 +1,15 @@
# 0.4.0-alpha.3 - unreleased
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.4.0-alpha.2 # 0.4.0-alpha.2
- Update to `libp2p-noise` `v0.42.0`. - Update to `libp2p-noise` `v0.42.0`.
- Update to `libp2p-core` `v0.39.0`. - Update to `libp2p-core` `v0.39.0`.
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
# 0.4.0-alpha # 0.4.0-alpha
- Initial alpha release. - Initial alpha release.

View File

@ -1,6 +1,6 @@
[package] [package]
name = "libp2p-webrtc" name = "libp2p-webrtc"
version = "0.4.0-alpha.2" version = "0.4.0-alpha.3"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
description = "WebRTC transport for libp2p" description = "WebRTC transport for libp2p"
repository = "https://github.com/libp2p/rust-libp2p" repository = "https://github.com/libp2p/rust-libp2p"