Skip to content

Commit be0b62a

Browse files
authored
fix(derive): Release breaking change as v0.31.0 (#3178)
`libp2p-swarm-derive` released a breaking change (#3011) as a patch release `v0.30.2`. This patch: 1. Prepares a new minor release of `libp2p-swarm-derive`. 2. Prepares a patch release for `libp2p-swarm` to use the minor release of `libp2p-swarm-derive`. As a follow up we can yank the `libp2p-swarm-derive` `v0.30.2` release. In addition we might want to release `libp2p-swarm-derive` `v0.30.3` containing all patches but #3011.
1 parent 5b4eab7 commit be0b62a

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

swarm-derive/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.30.2
1+
# 0.31.0
22

33
- Replace `NetworkBehaviour` Derive macro deprecated `inject_*` method implementations
44
with the new `on_swarm_event` and `on_connection_handler_event`.

swarm-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name = "libp2p-swarm-derive"
33
edition = "2021"
44
rust-version = "1.60.0"
5-
description = "Procedural macros of libp2p-core"
6-
version = "0.30.2"
5+
description = "Procedural macros of libp2p-swarm"
6+
version = "0.31.0"
77
authors = ["Parity Technologies <admin@parity.io>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"

swarm/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.41.1
2+
3+
- Update to `libp2p-swarm-derive` `v0.31.0`.
4+
15
# 0.41.0
26

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

swarm/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "libp2p-swarm"
33
edition = "2021"
44
rust-version = "1.62.0"
55
description = "The libp2p swarm"
6-
version = "0.41.0"
6+
version = "0.41.1"
77
authors = ["Parity Technologies <admin@parity.io>"]
88
license = "MIT"
99
repository = "https://github.com/libp2p/rust-libp2p"
@@ -17,7 +17,7 @@ futures = "0.3.1"
1717
futures-timer = "3.0.2"
1818
instant = "0.1.11"
1919
libp2p-core = { version = "0.38.0", path = "../core" }
20-
libp2p-swarm-derive = { version = "0.30.2", path = "../swarm-derive", optional = true }
20+
libp2p-swarm-derive = { version = "0.31.0", path = "../swarm-derive", optional = true }
2121
log = "0.4"
2222
pin-project = "1.0.0"
2323
rand = "0.8"
@@ -46,7 +46,7 @@ libp2p-identify = { path = "../protocols/identify" }
4646
libp2p-kad = { path = "../protocols/kad" }
4747
libp2p-ping = { path = "../protocols/ping" }
4848
libp2p-plaintext = { path = "../transports/plaintext" }
49-
libp2p-swarm-derive = { version = "0.30.2", path = "../swarm-derive" }
49+
libp2p-swarm-derive = { path = "../swarm-derive" }
5050
libp2p-yamux = { path = "../muxers/yamux" }
5151
quickcheck = { package = "quickcheck-ext", path = "../misc/quickcheck-ext" }
5252
void = "1"

0 commit comments

Comments
 (0)