diff --git a/adapters/bevy/client/Cargo.toml b/adapters/bevy/client/Cargo.toml index c05d324ec..3778fa5ab 100644 --- a/adapters/bevy/client/Cargo.toml +++ b/adapters/bevy/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-bevy-client" -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] workspace = "../../.." description = "Library to faciliate naia_client & Bevy interop" @@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" } [features] [dependencies] -naia-client = { version = "0.17", path = "../../../client", features = ["bevy_support", "wbindgen"] } -naia-bevy-shared = { version = "0.17", path = "../shared" } +naia-client = { version = "0.18", path = "../../../client", features = ["bevy_support", "wbindgen"] } +naia-bevy-shared = { version = "0.18", path = "../shared" } bevy_app = { version = "0.9", default-features=false } bevy_ecs = { version = "0.9", default-features=false } diff --git a/adapters/bevy/server/Cargo.toml b/adapters/bevy/server/Cargo.toml index a971d9f78..acf95f960 100644 --- a/adapters/bevy/server/Cargo.toml +++ b/adapters/bevy/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-bevy-server" -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] workspace = "../../.." description = "Library to faciliate naia_server & Bevy interop" @@ -13,7 +13,7 @@ edition = "2021" maintenance = { status = "actively-developed" } [dependencies] -naia-server = { version = "0.17", path = "../../../server", features = ["bevy_support"] } -naia-bevy-shared = { version = "0.17", path = "../shared" } +naia-server = { version = "0.18", path = "../../../server", features = ["bevy_support"] } +naia-bevy-shared = { version = "0.18", path = "../shared" } bevy_app = { version = "0.9", default-features=false } bevy_ecs = { version = "0.9", default-features=false } diff --git a/adapters/bevy/shared/Cargo.toml b/adapters/bevy/shared/Cargo.toml index 16a3d9487..81feb5df8 100644 --- a/adapters/bevy/shared/Cargo.toml +++ b/adapters/bevy/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-bevy-shared" -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] workspace = "../../.." description = "Library to faciliate naia & Bevy interop, functionality shared by client & server versions" @@ -15,5 +15,5 @@ maintenance = { status = "actively-developed" } [features] [dependencies] -naia-shared = { version = "0.17", path = "../../../shared", features = ["bevy_support", "wbindgen"] } +naia-shared = { version = "0.18", path = "../../../shared", features = ["bevy_support", "wbindgen"] } bevy_ecs = { version = "0.9", default-features=false } diff --git a/adapters/hecs/client/Cargo.toml b/adapters/hecs/client/Cargo.toml index 1e759ab51..58e2f6bc6 100644 --- a/adapters/hecs/client/Cargo.toml +++ b/adapters/hecs/client/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "naia-hecs-client" # 0.17 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/24/2023 -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] workspace = "../../.." description = "Library to faciliate naia_client & Hecs interop" @@ -20,6 +20,6 @@ wbindgen = [ "naia-client/wbindgen", "naia-hecs-shared/wbindgen" ] mquad = [ "naia-client/mquad", "naia-hecs-shared/mquad" ] [dependencies] -naia-client = { version = "0.17", path = "../../../client" } -naia-hecs-shared = { version = "0.17", path = "../shared" } +naia-client = { version = "0.18", path = "../../../client" } +naia-hecs-shared = { version = "0.18", path = "../shared" } hecs = { version = "0.9" } \ No newline at end of file diff --git a/adapters/hecs/server/Cargo.toml b/adapters/hecs/server/Cargo.toml index 558ad8eb2..3d2d4af02 100644 --- a/adapters/hecs/server/Cargo.toml +++ b/adapters/hecs/server/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "naia-hecs-server" # 0.17 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/24/2023 -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] workspace = "../../.." description = "Library to faciliate naia_server & Hecs interop" @@ -16,6 +16,6 @@ edition = "2021" maintenance = { status = "actively-developed" } [dependencies] -naia-server = { version = "0.17", path = "../../../server" } -naia-hecs-shared = { version = "0.17", path = "../shared" } +naia-server = { version = "0.18", path = "../../../server" } +naia-hecs-shared = { version = "0.18", path = "../shared" } hecs = { version = "0.9" } \ No newline at end of file diff --git a/adapters/hecs/shared/Cargo.toml b/adapters/hecs/shared/Cargo.toml index 28ce358d1..6492129f0 100644 --- a/adapters/hecs/shared/Cargo.toml +++ b/adapters/hecs/shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "naia-hecs-shared" # 0.17 is unpublished for now, due to lack of use of this crate, as well as plans for rapid releases - 2/24/2023 -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] workspace = "../../.." description = "Library to faciliate naia & Hecs interop, functionality shared by client & server versions" @@ -20,5 +20,5 @@ wbindgen = [ "naia-shared/wbindgen" ] mquad = [ "naia-shared/mquad" ] [dependencies] -naia-shared = { version = "0.17", path = "../../../shared" } +naia-shared = { version = "0.18", path = "../../../shared" } hecs = { version = "0.9" } \ No newline at end of file diff --git a/client/Cargo.toml b/client/Cargo.toml index 4cc2b4f73..d6f5efbf2 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-client" -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] 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." @@ -24,7 +24,7 @@ zstd_support = ["naia-shared/zstd_support"] [dependencies] naia-client-socket = { version = "0.15", path = "../socket/client" } -naia-shared = { version = "0.17", path = "../shared" } +naia-shared = { version = "0.18", path = "../shared" } cfg-if = { version = "1.0" } log = { version = "0.4" } bevy_ecs = { version = "0.9", default_features = false, optional = true } \ No newline at end of file diff --git a/server/Cargo.toml b/server/Cargo.toml index a73b3e964..92efe406f 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-server" -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] 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." @@ -22,7 +22,7 @@ zstd_support = ["naia-shared/zstd_support"] [dependencies] naia-server-socket = { version = "0.15", path = "../socket/server" } -naia-shared = { version = "0.17", path = "../shared" } +naia-shared = { version = "0.18", path = "../shared" } bevy_ecs = { version = "0.9", default_features = false, optional = true } log = { version = "0.4" } ring = { version = "0.16.15" } diff --git a/shared/Cargo.toml b/shared/Cargo.toml index ec4526377..894fe1217 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-shared" -version = "0.17.0" +version = "0.18.0" authors = ["connorcarpenter "] workspace = ".." description = "Common functionality shared between naia-server & naia-client crates" @@ -24,8 +24,8 @@ zstd_support = [ "zstd" ] [dependencies] naia-socket-shared = { version = "0.15", path = "../socket/shared" } -naia-derive = { version = "0.16", path = "derive" } -naia-serde = { version = "0.16", path = "serde" } +naia-derive = { version = "0.18", path = "derive" } +naia-serde = { version = "0.18", path = "serde" } log = { version = "0.4" } cfg-if = { version = "1.0" } js-sys = { version = "0.3", optional = true } diff --git a/shared/derive/Cargo.toml b/shared/derive/Cargo.toml index 491782667..72294591a 100644 --- a/shared/derive/Cargo.toml +++ b/shared/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-derive" -version = "0.16.0" +version = "0.18.0" authors = ["connorcarpenter "] workspace = "../.." description = "Procedural macros to simplify implementation of Naia Replicate & Protocolize traits" @@ -21,7 +21,7 @@ proc-macro = true [features] [dependencies] -naia-serde-derive = { version = "0.16", path = "../serde/derive" } +naia-serde-derive = { version = "0.18", path = "../serde/derive" } proc-macro2 = "1.0" syn = { version = "1.0.86", features = ["clone-impls"] } quote = "1.0" diff --git a/shared/serde/Cargo.toml b/shared/serde/Cargo.toml index 8eaf25c34..73e4473fe 100644 --- a/shared/serde/Cargo.toml +++ b/shared/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-serde" -version = "0.16.0" +version = "0.18.0" authors = ["connorcarpenter ", "Fedor ", "makepad "] workspace = "../.." description = "Bit-level de/serialization for naia" @@ -18,6 +18,6 @@ maintenance = { status = "actively-developed" } [features] [dependencies] -naia-serde-derive = { version = "0.16", path = "derive" } +naia-serde-derive = { version = "0.18", path = "derive" } log = { version = "0.4" } cfg-if = { version = "1.0" } \ No newline at end of file diff --git a/shared/serde/derive/Cargo.toml b/shared/serde/derive/Cargo.toml index 3bd3bd52d..7f85da346 100644 --- a/shared/serde/derive/Cargo.toml +++ b/shared/serde/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "naia-serde-derive" -version = "0.16.0" +version = "0.18.0" authors = ["connorcarpenter ", "Fedor ", "makepad "] workspace = "../../.." description = "Derive methods for naia-serde"