Skip to content

Commit 0cad636

Browse files
fix: move changelog entries to correct version
Whilst #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 #2902 so this stuff keeps happening. Pull-Request: #3541.
1 parent c06731b commit 0cad636

File tree

25 files changed

+85
-52
lines changed

25 files changed

+85
-52
lines changed

core/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1+
# 0.39.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3221]: https://github.com/libp2p/rust-libp2p/pull/3221
6+
17
# 0.39.0
28

39
- Move `ConnectionId` to `libp2p-swarm`. See [PR 3221].
410
- Move `PendingPoint` to `libp2p-swarm` and make it crate-private. See [PR 3221].
5-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
611

712
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
8-
[PR 3221]: https://github.com/libp2p/rust-libp2p/pull/3221
913

1014
# 0.38.0
1115

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-core"
33
edition = "2021"
44
rust-version = "1.60.0"
55
description = "Core traits and structs of libp2p"
6-
version = "0.39.0"
6+
version = "0.39.1"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

libp2p/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ libp2p-quic = { version = "=0.7.0-alpha.2", path = "../transports/quic", optiona
121121
libp2p-tcp = { version = "0.39.0", path = "../transports/tcp", optional = true }
122122
libp2p-tls = { version = "=0.1.0-alpha.2", path = "../transports/tls", optional = true }
123123
libp2p-uds = { version = "0.38.0", path = "../transports/uds", optional = true }
124-
libp2p-webrtc = { version = "=0.4.0-alpha.2", path = "../transports/webrtc", optional = true }
124+
libp2p-webrtc = { version = "=0.4.0-alpha.3", path = "../transports/webrtc", optional = true }
125125
libp2p-websocket = { version = "0.41.0", path = "../transports/websocket", optional = true }
126126

127127
[target.'cfg(not(target_os = "unknown"))'.dependencies]

protocols/autonat/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.10.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3153]: https://github.com/libp2p/rust-libp2p/pull/3153
6+
17
# 0.10.0
28

39
- Update to `libp2p-core` `v0.39.0`.
@@ -8,10 +14,7 @@
814

915
- Update to `libp2p-swarm` `v0.42.0`.
1016

11-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
12-
1317
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
14-
[PR 3153]: https://github.com/libp2p/rust-libp2p/pull/3153
1518

1619
# 0.9.1
1720

protocols/autonat/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-autonat"
33
edition = "2021"
44
rust-version = "1.62.0"
55
description = "NAT and firewall detection for libp2p"
6-
version = "0.10.0"
6+
version = "0.10.1"
77
authors = ["David Craven <[email protected]>", "Elena Frank <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/dcutr/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.9.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.9.0
28

39
- Update to `libp2p-core` `v0.39.0`.
@@ -11,13 +17,10 @@
1117

1218
- Rename types in public API to follow naming conventions defined in [issue 2217]. See [PR 3214].
1319

14-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
15-
1620
[PR 3213]: https://github.com/libp2p/rust-libp2p/pull/3213
1721
[PR 3153]: https://github.com/libp2p/rust-libp2p/pull/3153
1822
[issue 2217]: https://github.com/libp2p/rust-libp2p/issues/2217
1923
[PR 3214]: https://github.com/libp2p/rust-libp2p/pull/3214
20-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
2124

2225
# 0.8.1
2326

protocols/dcutr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-dcutr"
33
edition = "2021"
44
rust-version = "1.62.0"
55
description = "Direct connection upgrade through relay"
6-
version = "0.9.0"
6+
version = "0.9.1"
77
authors = ["Max Inden <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/floodsub/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1+
# 0.42.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.42.0
28

39
- Update to `libp2p-core` `v0.39.0`.
410

511
- Update to `libp2p-swarm` `v0.42.0`.
612

7-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
8-
9-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
10-
1113
# 0.41.0
1214

1315
- Update to `libp2p-core` `v0.38.0`.

protocols/floodsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-floodsub"
33
edition = "2021"
44
rust-version = "1.62.0"
55
description = "Floodsub protocol for libp2p"
6-
version = "0.42.0"
6+
version = "0.42.1"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/gossipsub/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.44.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.44.0
28

39
- Update to `prometheus-client` `v0.19.0`. See [PR 3207].
@@ -14,13 +20,10 @@
1420
It is preferred to import the gossipsub protocol as a module (`use libp2p::gossipsub;`), and refer to its types via `gossipsub::`.
1521
For example: `gossipsub::Behaviour` or `gossipsub::RawMessage`. See [PR 3303].
1622

17-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
18-
1923
[PR 3207]: https://github.com/libp2p/rust-libp2p/pull/3207/
2024
[PR 3303]: https://github.com/libp2p/rust-libp2p/pull/3303/
2125
[PR 3381]: https://github.com/libp2p/rust-libp2p/pull/3381/
2226
[discussion 2174]: https://github.com/libp2p/rust-libp2p/discussions/2174
23-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
2427

2528
# 0.43.0
2629

protocols/gossipsub/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-gossipsub"
33
edition = "2021"
44
rust-version = "1.62.0"
55
description = "Gossipsub protocol for libp2p"
6-
version = "0.44.0"
6+
version = "0.44.1"
77
authors = ["Age Manning <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/identify/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.42.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.42.0
28

39
- Update to `libp2p-core` `v0.39.0`.
@@ -9,11 +15,8 @@
915

1016
- Don't close the stream when reading the identify info in `protocol::recv`. See [PR 3344].
1117

12-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
13-
1418
[PR 3208]: https://github.com/libp2p/rust-libp2p/pull/3208
1519
[PR 3344]: https://github.com/libp2p/rust-libp2p/pull/3344
16-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
1720

1821
# 0.41.1
1922

protocols/identify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-identify"
33
edition = "2021"
44
rust-version = "1.62.0"
55
description = "Nodes identifcation protocol for libp2p"
6-
version = "0.42.0"
6+
version = "0.42.1"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/kad/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.43.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.43.0
28

39
- Update to `libp2p-core` `v0.39.0`.
@@ -10,11 +16,8 @@
1016

1117
- Bump MSRV to 1.65.0.
1218

13-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
14-
1519
[PR 3239]: https://github.com/libp2p/rust-libp2p/pull/3239
1620
[PR 3287]: https://github.com/libp2p/rust-libp2p/pull/3287
17-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
1821

1922
# 0.42.1
2023

protocols/kad/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-kad"
33
edition = "2021"
44
rust-version = "1.65.0"
55
description = "Kademlia protocol for libp2p"
6-
version = "0.43.0"
6+
version = "0.43.1"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/relay/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.15.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.15.0
28

39
- Rename types as per [discussion 2174].
@@ -11,11 +17,8 @@
1117

1218
- Update to `libp2p-swarm` `v0.42.0`.
1319

14-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
15-
1620
[PR 3238]: https://github.com/libp2p/rust-libp2p/pull/3238
1721
[discussion 2174]: https://github.com/libp2p/rust-libp2p/issues/2174
18-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
1922

2023
# 0.14.0
2124

protocols/relay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-relay"
33
edition = "2021"
44
rust-version = "1.62.0"
55
description = "Communications relaying for libp2p"
6-
version = "0.15.0"
6+
version = "0.15.1"
77
authors = ["Parity Technologies <[email protected]>", "Max Inden <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

protocols/rendezvous/CHANGELOG.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1+
# 0.12.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.12.0
28

39
- Update to `libp2p-core` `v0.39.0`.
410

511
- Update to `libp2p-swarm` `v0.42.0`.
612

7-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
8-
9-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
10-
1113
# 0.11.0
1214

1315
- De- and encode protobuf messages using `prost-codec`. See [PR 3058].

protocols/rendezvous/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-rendezvous"
33
edition = "2021"
44
rust-version = "1.62.0"
55
description = "Rendezvous protocol for libp2p"
6-
version = "0.12.0"
6+
version = "0.12.1"
77
authors = ["The COMIT guys <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

transports/noise/CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.42.1 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.42.0
28

39
- Update to `libp2p-core` `v0.39.0`.
@@ -6,11 +12,8 @@
612

713
- Deprecate `LegacyConfig` without replacement. See [PR 3265].
814

9-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
10-
1115
[PR 3227]: https://github.com/libp2p/rust-libp2p/pull/3227
1216
[PR 3265]: https://github.com/libp2p/rust-libp2p/pull/3265
13-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
1417

1518
# 0.41.0
1619

transports/noise/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-noise"
33
edition = "2021"
44
rust-version = "1.60.0"
55
description = "Cryptographic handshake protocol using the noise framework."
6-
version = "0.42.0"
6+
version = "0.42.1"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

transports/plaintext/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# 0.39.0
2-
3-
- Update to `libp2p-core` `v0.39.0`.
1+
# 0.39.1 - unreleased
42

53
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
64

75
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
86

7+
# 0.39.0
8+
9+
- Update to `libp2p-core` `v0.39.0`.
10+
911
# 0.38.0
1012

1113
- Add more specific error reporting and remove `prost::Error` from public API. See [PR 3058].

transports/plaintext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-plaintext"
33
edition = "2021"
44
rust-version = "1.60.0"
55
description = "Plaintext encryption dummy protocol for libp2p"
6-
version = "0.39.0"
6+
version = "0.39.1"
77
authors = ["Parity Technologies <[email protected]>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

transports/webrtc/CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1+
# 0.4.0-alpha.3 - unreleased
2+
3+
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
4+
5+
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
6+
17
# 0.4.0-alpha.2
28

39
- Update to `libp2p-noise` `v0.42.0`.
410

511
- Update to `libp2p-core` `v0.39.0`.
612

7-
- Migrate from `prost` to `quick-protobuf`. This removes `protoc` dependency. See [PR 3312].
8-
9-
[PR 3312]: https://github.com/libp2p/rust-libp2p/pull/3312
10-
1113
# 0.4.0-alpha
1214

13-
- Initial alpha release.
15+
- Initial alpha release.

transports/webrtc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libp2p-webrtc"
3-
version = "0.4.0-alpha.2"
3+
version = "0.4.0-alpha.3"
44
authors = ["Parity Technologies <[email protected]>"]
55
description = "WebRTC transport for libp2p"
66
repository = "https://github.com/libp2p/rust-libp2p"

0 commit comments

Comments
 (0)