Skip to content

Commit dec83df

Browse files
committed
Release 1.2
1 parent 89a1c9a commit dec83df

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

bevy_renet/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ keywords = ["gamedev", "networking"]
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
88
repository = "https://github.com/lucaspoffo/renet"
9-
version = "2.0.0"
9+
version = "3.0.0"
1010

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

@@ -23,9 +23,9 @@ required-features = ["netcode"]
2323
bevy_app = "0.17"
2424
bevy_ecs = "0.17"
2525
bevy_time = "0.17"
26-
renet = { path="../renet", version = "1.1.0", features = ["bevy"] }
27-
renet_netcode = { path="../renet_netcode", version = "1.1.0", features = ["bevy"], optional = true }
28-
renet_steam = { path="../renet_steam", version = "2.0.0", features = ["bevy"], optional = true }
26+
renet = { path="../renet", version = "1.2.0", features = ["bevy"] }
27+
renet_netcode = { path="../renet_netcode", version = "1.2.0", features = ["bevy"], optional = true }
28+
renet_steam = { path="../renet_steam", version = "2.1.0", features = ["bevy"], optional = true }
2929

3030
[dev-dependencies]
3131
bevy = {version = "0.17", default-features = false, features = ["bevy_core_pipeline", "bevy_render", "bevy_asset", "bevy_pbr", "x11", "tonemapping_luts", "ktx2", "zstd_rust", "bevy_window"]}

bevy_renet/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ If you want a more complex example you can checkout the [demo_bevy](https://gith
132132

133133
|bevy|bevy_renet|
134134
|---|---|
135+
|0.17|3.0|
135136
|0.16|2.0|
136137
|0.15|1.0|
137138
|0.14|0.0.12|

renet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["gamedev", "networking"]
77
license = "MIT OR Apache-2.0"
88
readme = "../README.md"
99
repository = "https://github.com/lucaspoffo/renet"
10-
version = "1.1.0"
10+
version = "1.2.0"
1111

1212
[features]
1313
bevy = ["dep:bevy_ecs"]

renet_netcode/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "renet_netcode"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
edition = "2021"
55
keywords = ["gamedev", "networking", "transport"]
66
description = "netcode transport for the renet crate: Server/Client network library for multiplayer games"
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
bevy = ["dep:bevy_ecs"]
1212

1313
[dependencies]
14-
renet = { version = "1.1.0", path = "../renet" }
14+
renet = { version = "1.2.0", path = "../renet" }
1515
renetcode = { path = "../renetcode", version = "1.0.0" }
1616
bevy_ecs = { version = "0.17", optional = true }
1717
log = "0.4.22"

renet_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 = "renet_steam"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
keywords = ["gamedev", "networking", "transport"]
55
description = "steam transport for the renet crate: Server/Client network library for multiplayer games"
66
repository = "https://github.com/lucaspoffo/renet"
@@ -14,7 +14,7 @@ edition = "2021"
1414
bevy = ["dep:bevy_ecs"]
1515

1616
[dependencies]
17-
renet = { version = "1.1.0", path = "../renet" }
17+
renet = { version = "1.2.0", path = "../renet" }
1818
steamworks = "0.12.2"
1919
log = "0.4.22"
2020
bevy_ecs = { version = "0.17", optional = true }

renet_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 = "renet_visualizer"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
keywords = ["gamedev", "networking"]
55
description = "Egui metrics visualizer for the renet crate: Server/Client network library for multiplayer games"
66
repository = "https://github.com/lucaspoffo/renet"
@@ -13,6 +13,6 @@ edition = "2021"
1313
bevy = ["dep:bevy_ecs"]
1414

1515
[dependencies]
16-
renet = { path = "../renet", version = "1.0.0" }
16+
renet = { path = "../renet", version = "1.2.0" }
1717
egui = "0.32"
1818
bevy_ecs = { version = "0.17", optional = true }

0 commit comments

Comments
 (0)