Skip to content

Commit

Permalink
prep v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
UkoeHB committed Feb 21, 2025
1 parent 2dccffa commit f4d9e7b
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## 0.5.0
## 0.5.0 - 02/21/25

- Add `WebSocketAcceptor::Plain::has_tls_proxy` field to fix setup bug when there is TLS via proxy.

Expand Down
12 changes: 6 additions & 6 deletions bevy_renet2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy_renet2"
description = "Bevy plugin for the renet2 crate"
version = "0.4.0"
version = "0.5.0"
edition = "2021"
keywords = ["gamedev", "networking"]
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -34,16 +34,16 @@ required-features = ["serde", "netcode"]
bevy_app = {version = "0.15", default-features = false}
bevy_ecs = {version = "0.15", default-features = false}
bevy_time = {version = "0.15", default-features = false}
renet2 = {path = "../renet2", version = "0.4.0", default-features = false, features = ["bevy"]}
renet2_netcode = {path = "../renet2_netcode", version = "0.4.0", optional = true, default-features = false, features = ["bevy"]}
renet2_steam = {path = "../renet2_steam", version = "0.4.0", optional = true, default-features = false, features = ["bevy"]}
renet2 = {path = "../renet2", version = "0.5.0", default-features = false, features = ["bevy"]}
renet2_netcode = {path = "../renet2_netcode", version = "0.5.0", optional = true, default-features = false, features = ["bevy"]}
renet2_steam = {path = "../renet2_steam", version = "0.5.0", optional = true, default-features = false, features = ["bevy"]}
steamworks = {version = "0.11", optional = true}

[dev-dependencies]
bevy = {version = "0.15", default-features = false, features = ["bevy_core_pipeline", "bevy_render", "bevy_window", "bevy_asset", "bevy_pbr", "x11", "tonemapping_luts", "ktx2", "zstd"]}
bincode = "1.3"
env_logger = "0.11"
renet2 = {path = "../renet2", version = "0.4.0", default-features = false, features = ["bevy"] }
renet2_netcode = {path = "../renet2_netcode", version = "0.4.0", default-features = false, features = ["bevy", "memory_transport"]}
renet2 = {path = "../renet2", version = "0.5.0", default-features = false, features = ["bevy"] }
renet2_netcode = {path = "../renet2_netcode", version = "0.5.0", default-features = false, features = ["bevy", "memory_transport"]}
serde = {version = "1.0", features = ["derive"]}
tracing-subscriber = { version = "0.3", features = [ "env-filter", "std", "tracing-log" ] }
6 changes: 3 additions & 3 deletions bevy_replicon_renet2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_replicon_renet2"
version = "0.4.0"
version = "0.5.0"
authors = [
"Hennadii Chernyshchyk <genaloner@gmail.com>",
"koe <ukoe@protonmail.com>",
Expand All @@ -23,13 +23,13 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]

[dependencies]
bevy_replicon = { version = "0.30", default-features = false }
bevy_renet2 = { path = "../bevy_renet2", version = "0.4.0", default-features = false }
bevy_renet2 = { path = "../bevy_renet2", version = "0.5.0", default-features = false }
bevy = { version = "0.15", default-features = false }

[dev-dependencies]
serde = "1.0"
clap = { version = "4.1", features = ["derive"] }
bevy_renet2 = { path = "../bevy_renet2", version = "0.4.0", features = ["native_transport"] }
bevy_renet2 = { path = "../bevy_renet2", version = "0.5.0", features = ["native_transport"] }
bevy = { version = "0.15", default-features = false, features = [
"bevy_state",
"bevy_text",
Expand Down
2 changes: 1 addition & 1 deletion renet2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renet2"
version = "0.4.0"
version = "0.5.0"
authors = ["koe <ukoe@protonmail.com>"]
description = "Server/Client network protocol library for multiplayer games, forked from renet"
edition = "2021"
Expand Down
6 changes: 3 additions & 3 deletions renet2_netcode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renet2_netcode"
version = "0.4.0"
version = "0.5.0"
authors = ["koe <ukoe@protonmail.com>"]
description = "Netcode integration for renet2"
edition = "2021"
Expand Down Expand Up @@ -100,8 +100,8 @@ ws_client_transport = [
bytes = "1.1"
log = "0.4"
octets = "0.3"
renetcode2 = { path = "../renetcode2", version = "0.4.0" }
renet2 = { path = "../renet2", version = "0.4.0" }
renetcode2 = { path = "../renetcode2", version = "0.5.0" }
renet2 = { path = "../renet2", version = "0.5.0" }
hmac-sha256 = { version = "1.1" }
url = { version = "2.4" }
bevy_ecs = { version = "0.15", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions renet2_setup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renet2_setup"
version = "0.4.0"
version = "0.5.0"
authors = [
"koe <ukoe@protonmail.com>",
]
Expand All @@ -25,8 +25,8 @@ serde = { version = "1.0" }
serde_with = { version = "1.0" }
url = { version = "2.4" }

renet2 = {path = "../renet2", version = "0.4.0", default-features = false}
renet2_netcode = {path = "../renet2_netcode", version = "0.4.0", optional = true, default-features = false, features = ["serde"]}
renet2 = {path = "../renet2", version = "0.5.0", default-features = false}
renet2_netcode = {path = "../renet2_netcode", version = "0.5.0", optional = true, default-features = false, features = ["serde"]}

bevy_ecs = { version = "0.15", optional = true }
enfync = { version = "0.1", default-features = false, optional = true }
Expand Down
4 changes: 2 additions & 2 deletions renet2_steam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renet2_steam"
version = "0.4.0"
version = "0.5.0"
keywords = ["gamedev", "networking", "transport"]
description = "steam transport for the renet2 crate"
repository = "https://github.com/UkoeHB/renet2"
Expand All @@ -17,7 +17,7 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
bevy = ["dep:bevy_ecs"]

[dependencies]
renet2 = { path = "../renet2", version = "0.4.0" }
renet2 = { path = "../renet2", version = "0.5.0" }
steamworks = "0.11"
log = "0.4.19"
bevy_ecs = { version = "0.15", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions renet2_visualizer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renet2_visualizer"
version = "0.4.0"
version = "0.5.0"
keywords = ["gamedev", "networking"]
description = "Egui metrics visualizer for the renet2 crate"
repository = "https://github.com/UkoeHB/renet2"
Expand All @@ -16,6 +16,6 @@ rustdoc-args = ["-Zunstable-options", "--cfg", "docsrs"]
bevy = ["dep:bevy_ecs"]

[dependencies]
renet2 = { path = "../renet2", version = "0.4.0" }
renet2 = { path = "../renet2", version = "0.5.0" }
egui = "0.29"
bevy_ecs = { version = "0.15", optional = true }
2 changes: 1 addition & 1 deletion renetcode2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renetcode2"
version = "0.4.0"
version = "0.5.0"
description = "Server/Client network protocol library for multiplayer games"
keywords = ["gamedev", "networking", "cryptography"]
repository = "https://github.com/UkoeHB/renet2"
Expand Down

0 comments on commit f4d9e7b

Please sign in to comment.