Skip to content

Commit 45747cc

Browse files
committed
prep v0.16.0
1 parent c7c2c5e commit 45747cc

11 files changed

Lines changed: 29 additions & 22 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 0.16.0 - 07/11/26
4+
5+
- Update to `bevy` v0.19.
6+
- Update to `bevy_replicon` v0.41.
7+
38
## 0.15.0 - 05/24/26
49

510
- Update to `steamworks` v0.13.

bevy_renet2/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "bevy_renet2"
33
description = "Bevy plugin for the renet2 crate"
4-
version = "0.15.0"
4+
version = "0.16.0"
55
edition = "2021"
66
keywords = ["gamedev", "networking"]
77
license = "MIT OR Apache-2.0"
@@ -34,13 +34,13 @@ required-features = ["serde", "netcode"]
3434
bevy_app = { version = "0.19", default-features = false }
3535
bevy_ecs = { version = "0.19", default-features = false }
3636
bevy_time = { version = "0.19", default-features = false }
37-
renet2 = { path = "../renet2", version = "0.15.0", default-features = false, features = [
37+
renet2 = { path = "../renet2", version = "0.16.0", default-features = false, features = [
3838
"bevy",
3939
] }
40-
renet2_netcode = { path = "../renet2_netcode", version = "0.15.0", optional = true, default-features = false, features = [
40+
renet2_netcode = { path = "../renet2_netcode", version = "0.16.0", optional = true, default-features = false, features = [
4141
"bevy",
4242
] }
43-
renet2_steam = { path = "../renet2_steam", version = "0.15.0", optional = true, default-features = false, features = [
43+
renet2_steam = { path = "../renet2_steam", version = "0.16.0", optional = true, default-features = false, features = [
4444
"bevy",
4545
] }
4646
steamworks = { version = "0.13", optional = true }
@@ -60,10 +60,10 @@ bevy = { version = "0.19", default-features = false, features = [
6060
] }
6161
bincode = "1.3"
6262
env_logger = "0.11"
63-
renet2 = { path = "../renet2", version = "0.15.0", default-features = false, features = [
63+
renet2 = { path = "../renet2", version = "0.16.0", default-features = false, features = [
6464
"bevy",
6565
] }
66-
renet2_netcode = { path = "../renet2_netcode", version = "0.15.0", default-features = false, features = [
66+
renet2_netcode = { path = "../renet2_netcode", version = "0.16.0", default-features = false, features = [
6767
"bevy",
6868
"memory_transport",
6969
] }

bevy_renet2/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ If you want a more complex example you can checkout the [demo_bevy](https://gith
129129

130130
| bevy | bevy_renet2 |
131131
| ---- | --------------- |
132-
| 0.18 | 0.13.0 |
132+
| 0.19 | 0.16.0 |
133+
| 0.18 | 0.13.0 - 0.15.0 |
133134
| 0.17 | 0.11.0 - 0.12.0 |
134135
| 0.16 | 0.9.0 - 0.10.0 |
135136
| 0.15 | 0.0.7 - 0.8.1 |

bevy_replicon_renet2/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_replicon_renet2"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
authors = [
55
"Hennadii Chernyshchyk <genaloner@gmail.com>",
66
"koe <ukoe@protonmail.com>",
@@ -23,12 +23,12 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
2323

2424
[dependencies]
2525
bevy_replicon = { version = "0.41", default-features = false }
26-
bevy_renet2 = { path = "../bevy_renet2", version = "0.15.0", default-features = false }
26+
bevy_renet2 = { path = "../bevy_renet2", version = "0.16.0", default-features = false }
2727
bevy = { version = "0.19", default-features = false, features = ["bevy_log"] }
2828

2929
[dev-dependencies]
3030
clap = { version = "4.1", features = ["derive"] }
31-
bevy_renet2 = { path = "../bevy_renet2", version = "0.15.0", features = [
31+
bevy_renet2 = { path = "../bevy_renet2", version = "0.16.0", features = [
3232
"native_transport",
3333
] }
3434
bevy = { version = "0.19", default-features = false, features = [

bevy_replicon_renet2/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Run tests with `cargo test --features native_transport,client,server`.
88

99
| bevy_replicon_renet2 | bevy_renet2 | bevy_replicon | bevy |
1010
| -------------------- | ----------- | ------------- | ------ |
11+
| 0.18 | 0.16 | 0.41 | 0.19 |
1112
| 0.16 | 0.14 | 0.40 | 0.18 |
1213
| 0.15 | 0.14 | 0.39 | 0.18 |
1314
| 0.14 | 0.13 | 0.39 | 0.18 |

renet2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renet2"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = ["koe <ukoe@protonmail.com>"]
55
description = "Server/Client network protocol library for multiplayer games, forked from renet"
66
edition = "2021"

renet2_netcode/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renet2_netcode"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = ["koe <ukoe@protonmail.com>"]
55
description = "Netcode integration for renet2"
66
edition = "2021"
@@ -107,8 +107,8 @@ ws_client_transport = [
107107
bytes = "1.1"
108108
log = "0.4"
109109
octets = "0.3"
110-
renetcode2 = { path = "../renetcode2", version = "0.15.0" }
111-
renet2 = { path = "../renet2", version = "0.15.0" }
110+
renetcode2 = { path = "../renetcode2", version = "0.16.0" }
111+
renet2 = { path = "../renet2", version = "0.16.0" }
112112
hmac-sha256 = { version = "1.1" }
113113
url = { version = "2.4" }
114114
bevy_ecs = { version = "0.19", optional = true }

renet2_setup/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renet2_setup"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = ["koe <ukoe@protonmail.com>"]
55
edition = "2021"
66
description = "Setup utilities for renet2"
@@ -18,8 +18,8 @@ serde = { version = "1.0" }
1818
serde_with = { version = "1.0" }
1919
url = { version = "2.4" }
2020

21-
renet2 = { path = "../renet2", version = "0.15.0", default-features = false }
22-
renet2_netcode = { path = "../renet2_netcode", version = "0.15.0", optional = true, default-features = false, features = [
21+
renet2 = { path = "../renet2", version = "0.16.0", default-features = false }
22+
renet2_netcode = { path = "../renet2_netcode", version = "0.16.0", optional = true, default-features = false, features = [
2323
"serde",
2424
] }
2525

renet2_steam/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renet2_steam"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
keywords = ["gamedev", "networking", "transport"]
55
description = "steam transport for the renet2 crate"
66
repository = "https://github.com/UkoeHB/renet2"
@@ -17,7 +17,7 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
1717
bevy = ["dep:bevy_ecs"]
1818

1919
[dependencies]
20-
renet2 = { path = "../renet2", version = "0.15.0" }
20+
renet2 = { path = "../renet2", version = "0.16.0" }
2121
steamworks = "0.13"
2222
log = "0.4.19"
2323
bevy_ecs = { version = "0.19", optional = true }

renet2_visualizer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renet2_visualizer"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
keywords = ["gamedev", "networking"]
55
description = "Egui metrics visualizer for the renet2 crate"
66
repository = "https://github.com/UkoeHB/renet2"
@@ -16,6 +16,6 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
1616
bevy = ["dep:bevy_ecs"]
1717

1818
[dependencies]
19-
renet2 = { path = "../renet2", version = "0.15.0" }
19+
renet2 = { path = "../renet2", version = "0.16.0" }
2020
egui = "0.35"
2121
bevy_ecs = { version = "0.19", optional = true }

0 commit comments

Comments
 (0)