Skip to content

Commit

Permalink
naia_socket_shared -> 0.15.0
Browse files Browse the repository at this point in the history
naia_client_socket -> 0.15.0
naia_server_socket -> 0.15.0
naia_shared -> 0.15.0
naia_client -> 0.15.0
naia_server -> 0.15.0
naia_bevy_server -> 0.15.0
naia_bevy_client -> 0.15.0
  • Loading branch information
connorcarpenter committed Jan 29, 2023
1 parent a162e53 commit 78c371e
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions adapters/bevy/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-bevy-client"
version = "0.14.0"
version = "0.15.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../../.."
description = "Library to faciliate naia_client & Bevy interop"
Expand All @@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" }
[features]

[dependencies]
naia-client = { version = "0.14", path = "../../../client", features = ["bevy_support", "wbindgen"] }
naia-bevy-shared = { version = "0.14", path = "../shared" }
naia-client = { version = "0.15", path = "../../../client", features = ["bevy_support", "wbindgen"] }
naia-bevy-shared = { version = "0.15", path = "../shared" }
bevy_app = { version = "0.9", default-features=false }
bevy_ecs = { version = "0.9", default-features=false }
6 changes: 3 additions & 3 deletions adapters/bevy/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-bevy-server"
version = "0.14.0"
version = "0.15.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../../.."
description = "Library to faciliate naia_server & Bevy interop"
Expand All @@ -13,7 +13,7 @@ edition = "2021"
maintenance = { status = "actively-developed" }

[dependencies]
naia-server = { version = "0.14", path = "../../../server", features = ["bevy_support"] }
naia-bevy-shared = { version = "0.14", path = "../shared" }
naia-server = { version = "0.15", path = "../../../server", features = ["bevy_support"] }
naia-bevy-shared = { version = "0.15", path = "../shared" }
bevy_app = { version = "0.9", default-features=false }
bevy_ecs = { version = "0.9", default-features=false }
6 changes: 3 additions & 3 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-client"
version = "0.14.0"
version = "0.15.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = ".."
description = "Provides a cross-platform client that can send/receive messages to/from a server, and has a pool of in-scope entities/components that is synced with the server."
Expand All @@ -23,8 +23,8 @@ bevy_support = ["naia-shared/bevy_support", "bevy_ecs"]
zstd_support = ["naia-shared/zstd_support"]

[dependencies]
naia-client-socket = { version = "0.13", path = "../socket/client" }
naia-shared = { version = "0.14", path = "../shared" }
naia-client-socket = { version = "0.15", path = "../socket/client" }
naia-shared = { version = "0.15", path = "../shared" }
cfg-if = { version = "1.0" }
log = { version = "0.4" }
bevy_ecs = { version = "0.9", default_features = false, optional = true }
6 changes: 3 additions & 3 deletions server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-server"
version = "0.14.0"
version = "0.15.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = ".."
description = "A server that uses either UDP or WebRTC communication to send/receive messages to/from connected clients, and syncs registered Entities/Components to clients to whom they are in-scope."
Expand All @@ -21,8 +21,8 @@ bevy_support = ["naia-shared/bevy_support","bevy_ecs"]
zstd_support = ["naia-shared/zstd_support"]

[dependencies]
naia-server-socket = { version = "0.13", path = "../socket/server" }
naia-shared = { version = "0.14", path = "../shared" }
naia-server-socket = { version = "0.15", path = "../socket/server" }
naia-shared = { version = "0.15", path = "../shared" }
log = { version = "0.4" }
ring = { version = "0.16.15" }
fastrand = { version = "1.7.0" }
Expand Down
4 changes: 2 additions & 2 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-shared"
version = "0.14.0"
version = "0.15.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = ".."
description = "Common functionality shared between naia-server & naia-client crates"
Expand All @@ -23,7 +23,7 @@ bevy_support = [ "bevy_ecs" ]
zstd_support = [ "zstd" ]

[dependencies]
naia-socket-shared = { version = "0.10", path = "../socket/shared" }
naia-socket-shared = { version = "0.15", path = "../socket/shared" }
naia-derive = { version = "0.13", path = "derive" }
naia-serde = { version = "0.13", path = "serde" }
log = { version = "0.4" }
Expand Down
4 changes: 2 additions & 2 deletions socket/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-client-socket"
version = "0.13.1"
version = "0.15.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../.."
description = "Abstraction to expose common API over a UDP socket on Linux, and a unreliable WebRTC datachannel on the browser"
Expand All @@ -20,7 +20,7 @@ wbindgen = [ "naia-socket-shared/wbindgen", "wasm-bindgen", "js-sys", "web_sys",
mquad = [ "naia-socket-shared/mquad", "miniquad" ]

[dependencies]
naia-socket-shared = { version = "0.10", path = "../shared" }
naia-socket-shared = { version = "0.15", path = "../shared" }
cfg-if = { version = "1.0" }
log = { version = "0.4" }
wasm-bindgen = { version = "0.2", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions socket/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-server-socket"
version = "0.13.0"
version = "0.15.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../.."
description = "An abstraction to provide a common API over either a UDP socket or a service that can establish WebRTC connections"
Expand All @@ -16,7 +16,7 @@ edition = "2021"
maintenance = { status = "actively-developed" }

[dependencies]
naia-socket-shared = { version = "0.10", path = "../shared" }
naia-socket-shared = { version = "0.15", path = "../shared" }
log = { version = "0.4" }
futures-channel = { version = "0.3", features = ["sink"] }
futures-core = { version = "0.3" }
Expand Down
2 changes: 1 addition & 1 deletion socket/shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-socket-shared"
version = "0.10.1"
version = "0.15.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../.."
description = "Common data types shared between naia-server-socket & naia-client-socket crates"
Expand Down

0 comments on commit 78c371e

Please sign in to comment.