Skip to content

Commit

Permalink
Renet: release 0.0.14
Browse files Browse the repository at this point in the history
Renet -> 0.0.14
BevyRenet -> 0.0.10
Renetcode -> 0.0.10
RenetVisualizer -> 0.0.7
  • Loading branch information
lucaspoffo committed Nov 12, 2023
1 parent bae25cc commit eb1196c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bevy_renet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["gamedev", "networking"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/lucaspoffo/renet"
version = "0.0.9"
version = "0.0.10"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -22,7 +22,7 @@ required-features = ["serde", "transport"]

[dependencies]
bevy = {version = "0.12", default-features = false}
renet = {path = "../renet", version = "0.0.13", features = ["bevy"]}
renet = {path = "../renet", version = "0.0.14", features = ["bevy"]}
# renet_steam = { path = "../renet_steam", version = "0.0.1", features = [ "bevy" ], optional = true }

[dev-dependencies]
Expand Down
1 change: 1 addition & 0 deletions bevy_renet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ If you want a more complex example you can checkout the [demo_bevy](https://gith

|bevy|bevy_renet|
|---|---|
|0.12|0.0.10|
|0.11|0.0.9|
|0.10|0.0.8|
|0.9|0.0.6|
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.13"
version = "0.0.14"

# 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.12", optional = true }
bytes = "1.1"
log = "0.4.17"
octets = "0.2"
renetcode = { path = "../renetcode", version = "0.0.9", optional = true }
renetcode = { path = "../renetcode", version = "0.0.10", optional = true }
serde = {version = "1.0", optional = true}

[dev-dependencies]
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.6"
version = "0.0.7"
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.13" }
renet = { path = "../renet", version = "0.0.14" }
egui = "0.23"
bevy_ecs = { version = "0.12.0", 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.9"
version = "0.0.10"
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 eb1196c

Please sign in to comment.