Skip to content

Commit ec51df2

Browse files
committed
Update to bevy_replicon 0.40
1 parent 9952adc commit ec51df2

3 files changed

Lines changed: 13 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.16.0] - 2026-05-17
11+
12+
### Changed
13+
14+
- Update to `bevy_replicon` 0.40.
15+
1016
## [0.15.0] - 2026-02-24
1117

1218
### Changed
@@ -132,7 +138,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
132138

133139
First release after I/O abstraction.
134140

135-
[unreleased]: https://github.com/simgine/bevy_replicon_renet/compare/v0.15.0...HEAD
141+
[unreleased]: https://github.com/simgine/bevy_replicon_renet/compare/v0.16.0...HEAD
142+
[0.16.0]: https://github.com/simgine/bevy_replicon_renet/compare/v0.15.0...v0.16.0
136143
[0.15.0]: https://github.com/simgine/bevy_replicon_renet/compare/v0.14.0...v0.15.0
137144
[0.14.0]: https://github.com/simgine/bevy_replicon_renet/compare/v0.13.0...v0.14.0
138145
[0.13.0]: https://github.com/simgine/bevy_replicon_renet/compare/v0.12.0...v0.13.0

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_replicon_renet"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = [
55
"Hennadii Chernyshchyk <genaloner@gmail.com>",
66
"koe <ukoe@protonmail.com>",
@@ -25,7 +25,7 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
2525
all-features = true
2626

2727
[dependencies]
28-
bevy_replicon = { version = "0.39.0", default-features = false }
28+
bevy_replicon = { version = "0.40.0", default-features = false }
2929
bevy_renet = { version = "4.0", default-features = false }
3030
bevy = { version = "0.18.0", default-features = false, features = ["bevy_log"] }
3131

tests/netcode.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ fn disconnect_request() {
8383

8484
server_app.world_mut().spawn(Replicated);
8585
server_app.world_mut().write_message(ToClients {
86-
mode: SendMode::Broadcast,
86+
targets: SendTargets::All,
8787
message: Test,
8888
});
8989

@@ -142,7 +142,7 @@ fn server_stop() {
142142

143143
server_app.world_mut().spawn(Replicated);
144144
server_app.world_mut().write_message(ToClients {
145-
mode: SendMode::Broadcast,
145+
targets: SendTargets::All,
146146
message: Test,
147147
});
148148

@@ -239,7 +239,7 @@ fn server_message() {
239239
setup(&mut server_app, &mut client_app);
240240

241241
server_app.world_mut().write_message(ToClients {
242-
mode: SendMode::Broadcast,
242+
targets: SendTargets::All,
243243
message: Test,
244244
});
245245

0 commit comments

Comments
 (0)