Skip to content

Commit 49cf84c

Browse files
committed
Bump bevy_replicon to 0.28
1 parent 313394a commit 49cf84c

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Update to `bevy_replicon` 0.28.
13+
1014
## [0.4.0] - 2024-07-21
1115

1216
### Added
@@ -15,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1519

1620
### Changed
1721

22+
- Update to `bevy_replicon` 0.27.
1823
- Move to a dedicated repository.
1924
- Move `RepliconRenetServerPlugin` to `server` module.
2025
- Move `RepliconRenetClientPlugin` to `client` module.
@@ -23,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2328

2429
### Changed
2530

26-
- Update to `bevy_replicon` 0.26.0.
31+
- Update to `bevy_replicon` 0.26.
2732

2833
### Fixed
2934

@@ -33,14 +38,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3338

3439
### Changed
3540

36-
- Update to `bevy_replicon` 0.25.0.
41+
- Update to `bevy_replicon` 0.25.
3742

3843
## [0.1.0] - 2024-05-06
3944

4045
First release after I/O abstraction.
4146

4247
[unreleased]: https://github.com/projectharmonia/bevy_replicon_renet/compare/v0.4.0...HEAD
43-
[0.3.0]: https://github.com/projectharmonia/bevy_replicon_renet/releases/tag/v0.4.0
48+
[0.4.0]: https://github.com/projectharmonia/bevy_replicon_renet/releases/tag/v0.4.0
4449
[0.3.0]: https://github.com/projectharmonia/bevy_replicon/compare/v0.2.0...v0.3.0
4550
[0.2.0]: https://github.com/projectharmonia/bevy_replicon/compare/v0.1.0...v0.2.0
4651
[0.1.0]: https://github.com/projectharmonia/bevy_replicon/releases/tag/v0.1.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
2525
all-features = true
2626

2727
[dependencies]
28-
bevy_replicon = { version = "0.27", default-features = false }
28+
bevy_replicon = { version = "0.28", default-features = false }
2929
bevy_renet = { version = "0.0.12", default-features = false }
3030
bevy = { version = "0.14", default-features = false }
3131

src/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl RepliconRenetServerPlugin {
7979
mut renet_server: ResMut<RenetServer>,
8080
mut replicon_server: ResMut<RepliconServer>,
8181
) {
82-
for client_id in connected_clients.iter_client_ids() {
82+
for &client_id in connected_clients.iter() {
8383
let renet_client_id = renet::ClientId::from_raw(client_id.get());
8484
for channel_id in 0..channels.client_channels().len() as u8 {
8585
while let Some(message) = renet_server.receive_message(renet_client_id, channel_id)

0 commit comments

Comments
 (0)