Skip to content

Commit

Permalink
Renet: release 0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaspoffo committed Jul 20, 2024
1 parent 3a48dcc commit 7331a9e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bevy_renet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ required-features = ["serde", "transport"]

[dependencies]
bevy = {version = "0.14", default-features = false}
renet = {path = "../renet", version = "0.0.15", default-features=false, features = ["bevy"]}
renet = {path = "../renet", version = "0.0.16", default-features=false, features = ["bevy"]}

[dev-dependencies]
bevy = {version = "0.14", default-features = false, features = ["bevy_core_pipeline", "bevy_render", "bevy_asset", "bevy_pbr", "x11", "tonemapping_luts", "ktx2", "zstd"]}
Expand Down
4 changes: 2 additions & 2 deletions renet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["gamedev", "networking"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
repository = "https://github.com/lucaspoffo/renet"
version = "0.0.15"
version = "0.0.16"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
Expand All @@ -21,7 +21,7 @@ bevy_ecs = { version = "0.14", optional = true }
bytes = "1.1"
log = "0.4.17"
octets = "0.3"
renetcode = { path = "../renetcode", version = "0.0.11", optional = true }
renetcode = { path = "../renetcode", version = "0.0.12", optional = true }
serde = {version = "1.0", optional = true}

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions renet_steam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renet_steam"
version = "0.0.1"
version = "0.0.2"
keywords = ["gamedev", "networking", "transport"]
description = "steam transport for the renet crate: Server/Client network library for multiplayer games"
repository = "https://github.com/lucaspoffo/renet"
Expand All @@ -14,7 +14,7 @@ edition = "2021"
bevy = ["dep:bevy_app", "dep:bevy_ecs", "dep:bevy_renet"]

[dependencies]
renet = { version = "0.0.15", path = "../renet" }
renet = { version = "0.0.16", path = "../renet" }
# its version 0.10 but we need to use the rev because of a missing feature
steamworks = "0.11"
log = "0.4.19"
Expand Down
4 changes: 2 additions & 2 deletions renet_visualizer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renet_visualizer"
version = "0.0.8"
version = "0.0.9"
keywords = ["gamedev", "networking"]
description = "Egui metrics visualizer for the renet crate: Server/Client network library for multiplayer games"
repository = "https://github.com/lucaspoffo/renet"
Expand All @@ -13,6 +13,6 @@ edition = "2021"
bevy = ["dep:bevy_ecs"]

[dependencies]
renet = { path = "../renet", version = "0.0.15" }
renet = { path = "../renet", version = "0.0.16" }
egui = "0.28"
bevy_ecs = { version = "0.14", optional = true }
2 changes: 1 addition & 1 deletion renetcode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "renetcode"
version = "0.0.11"
version = "0.0.12"
description = "Server/Client network protocol library for multiplayer games"
keywords = ["gamedev", "networking", "cryptography"]
repository = "https://github.com/lucaspoffo/renet"
Expand Down

0 comments on commit 7331a9e

Please sign in to comment.