Skip to content

Commit

Permalink
update versions of all crates to 0.22.0
Browse files Browse the repository at this point in the history
  • Loading branch information
connorcarpenter committed Jan 10, 2024
1 parent 4b0df2e commit 8b788aa
Show file tree
Hide file tree
Showing 15 changed files with 39 additions and 39 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.21.1"
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../../.."
description = "Library to faciliate naia_client & Bevy interop"
Expand All @@ -17,8 +17,8 @@ transport_webrtc = [ "naia-client/transport_webrtc" ]
transport_udp = [ "naia-client/transport_udp" ]

[dependencies]
naia-client = { version = "0.21", path = "../../../client", features = ["bevy_support", "wbindgen"] }
naia-bevy-shared = { version = "0.21", path = "../shared" }
naia-client = { version = "0.22", path = "../../../client", features = ["bevy_support", "wbindgen"] }
naia-bevy-shared = { version = "0.22", path = "../shared" }
bevy_app = { version = "0.12.1", default-features=false }
bevy_ecs = { version = "0.12.1", default-features=false }
log = { version = "0.4" }
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.21.1"
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../../.."
description = "Library to faciliate naia_server & Bevy interop"
Expand All @@ -17,8 +17,8 @@ transport_webrtc = [ "naia-server/transport_webrtc" ]
transport_udp = [ "naia-server/transport_udp" ]

[dependencies]
naia-server = { version = "0.21", path = "../../../server", features = ["bevy_support"] }
naia-bevy-shared = { version = "0.21", path = "../shared" }
naia-server = { version = "0.22", path = "../../../server", features = ["bevy_support"] }
naia-bevy-shared = { version = "0.22", path = "../shared" }
bevy_app = { version = "0.12.1", default-features=false }
bevy_ecs = { version = "0.12.1", default-features=false }
log = { version = "0.4" }
4 changes: 2 additions & 2 deletions adapters/bevy/shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-bevy-shared"
version = "0.21.1"
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../../.."
description = "Library to faciliate naia & Bevy interop, functionality shared by client & server versions"
Expand All @@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" }
[features]

[dependencies]
naia-shared = { version = "0.21", path = "../../../shared", features = ["bevy_support", "wbindgen"] }
naia-shared = { version = "0.22", path = "../../../shared", features = ["bevy_support", "wbindgen"] }
bevy_app = { version = "0.12.1", default-features=false }
bevy_ecs = { version = "0.12.1", default-features=false }
log = { version = "0.4" }
8 changes: 4 additions & 4 deletions adapters/hecs/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "naia-hecs-client"
# 0.21 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 4/23/2023
version = "0.21.0"
# 0.22 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 1/9/2024
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../../.."
description = "Library to faciliate naia_client & Hecs interop"
Expand All @@ -22,6 +22,6 @@ transport_webrtc = [ "naia-client/transport_webrtc" ]
transport_udp = [ "naia-client/transport_udp" ]

[dependencies]
naia-client = { version = "0.21", path = "../../../client" }
naia-hecs-shared = { version = "0.21", path = "../shared" }
naia-client = { version = "0.22", path = "../../../client" }
naia-hecs-shared = { version = "0.22", path = "../shared" }
hecs = { version = "0.10" }
8 changes: 4 additions & 4 deletions adapters/hecs/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "naia-hecs-server"
# 0.21 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 4/23/2023
version = "0.21.0"
# 0.22 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 1/9/2024
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../../.."
description = "Library to faciliate naia_server & Hecs interop"
Expand All @@ -20,6 +20,6 @@ transport_webrtc = [ "naia-server/transport_webrtc" ]
transport_udp = [ "naia-server/transport_udp" ]

[dependencies]
naia-server = { version = "0.21", path = "../../../server" }
naia-hecs-shared = { version = "0.21", path = "../shared" }
naia-server = { version = "0.22", path = "../../../server" }
naia-hecs-shared = { version = "0.22", path = "../shared" }
hecs = { version = "0.10" }
6 changes: 3 additions & 3 deletions adapters/hecs/shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "naia-hecs-shared"
# 0.21 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 4/23/2023
version = "0.21.0"
# 0.22 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 1/9/2024
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../../.."
description = "Library to faciliate naia & Hecs interop, functionality shared by client & server versions"
Expand All @@ -20,5 +20,5 @@ wbindgen = [ "naia-shared/wbindgen" ]
mquad = [ "naia-shared/mquad" ]

[dependencies]
naia-shared = { version = "0.21", path = "../../../shared" }
naia-shared = { version = "0.22", path = "../../../shared" }
hecs = { version = "0.10" }
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.21.1"
version = "0.22.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 @@ -25,8 +25,8 @@ transport_webrtc = [ "naia-client-socket" ]
transport_udp = [ "local_ipaddress" ]

[dependencies]
naia-shared = { version = "0.21", path = "../shared" }
naia-client-socket = { version = "0.20", path = "../socket/client", optional = true }
naia-shared = { version = "0.22", path = "../shared" }
naia-client-socket = { version = "0.22", path = "../socket/client", optional = true }
bevy_ecs = { version = "0.12.1", default_features = false, optional = true }
local_ipaddress = { version = "0.1", optional = true }
cfg-if = { version = "1.0" }
Expand Down
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.21.1"
version = "0.22.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 @@ -23,8 +23,8 @@ transport_webrtc = [ "naia-server-socket" ]
transport_udp = []

[dependencies]
naia-shared = { version = "0.21", path = "../shared" }
naia-server-socket = { version = "0.20", path = "../socket/server", optional = true }
naia-shared = { version = "0.22", path = "../shared" }
naia-server-socket = { version = "0.22", path = "../socket/server", optional = true }
bevy_ecs = { version = "0.12.1", default_features = false, optional = true }
cfg-if = { version = "1.0" }
log = { version = "0.4" }
Expand Down
8 changes: 4 additions & 4 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-shared"
version = "0.21.1"
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = ".."
description = "Common functionality shared between naia-server & naia-client crates"
Expand All @@ -23,9 +23,9 @@ bevy_support = [ "bevy_ecs" ]
zstd_support = [ "zstd" ]

[dependencies]
naia-socket-shared = { version = "0.20", path = "../socket/shared" }
naia-derive = { version = "0.21", path = "derive" }
naia-serde = { version = "0.18", path = "serde" }
naia-socket-shared = { version = "0.22", path = "../socket/shared" }
naia-derive = { version = "0.22", path = "derive" }
naia-serde = { version = "0.22", path = "serde" }
log = { version = "0.4" }
cfg-if = { version = "1.0" }
js-sys = { version = "0.3", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions shared/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-derive"
version = "0.21.1"
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>"]
workspace = "../.."
description = "Procedural macros to simplify implementation of Naia Replicate & Protocolize traits"
Expand All @@ -21,7 +21,7 @@ proc-macro = true
[features]

[dependencies]
naia-serde-derive = { version = "0.18", path = "../serde/derive" }
naia-serde-derive = { version = "0.22", path = "../serde/derive" }
proc-macro2 = "1.0"
syn = { version = "2.0.29", features = ["clone-impls"] }
quote = "1.0"
4 changes: 2 additions & 2 deletions shared/serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-serde"
version = "0.18.0"
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>", "Fedor <[email protected]>", "makepad <[email protected]>"]
workspace = "../.."
description = "Bit-level de/serialization for naia"
Expand All @@ -18,6 +18,6 @@ maintenance = { status = "actively-developed" }
[features]

[dependencies]
naia-serde-derive = { version = "0.18", path = "derive" }
naia-serde-derive = { version = "0.22", path = "derive" }
log = { version = "0.4" }
cfg-if = { version = "1.0" }
2 changes: 1 addition & 1 deletion shared/serde/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "naia-serde-derive"
version = "0.18.1"
version = "0.22.0"
authors = ["connorcarpenter <[email protected]>", "Fedor <[email protected]>", "makepad <[email protected]>"]
workspace = "../../.."
description = "Derive methods for naia-serde"
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.20.1"
version = "0.22.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.20", path = "../shared" }
naia-socket-shared = { version = "0.22", path = "../shared" }
cfg-if = { version = "1.0" }
log = { version = "0.4" }
wasm-bindgen = { version = "0.2.84", 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.20.0"
version = "0.22.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.20", path = "../shared" }
naia-socket-shared = { version = "0.22", 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.20.0"
version = "0.22.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 8b788aa

Please sign in to comment.