diff --git a/CHANGELOG.md b/CHANGELOG.md index 859661a3..bf3edd4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Renet changelog -## Unreleased +## 0.0.12 - 19-05-2023 This release comes with 3 major changes: @@ -44,7 +44,7 @@ Rechannel has been deprecrated, all its logic has been moved inside renet. * Removed the `clear_events` options, you can achieve the same functionality by adding the Events yourself before the Plugin. -## 0.0.11 - 2023-03-12 +## 0.0.11 - 12-03-2023 ### Added ⭐ @@ -61,7 +61,7 @@ Rechannel has been deprecrated, all its logic has been moved inside renet. * [Shatur](https://github.com/Shatur) -## 0.0.10 - 2022-11-18 +## 0.0.10 - 18-11-2022 ### Added ⭐ @@ -86,7 +86,7 @@ Rechannel has been deprecrated, all its logic has been moved inside renet. * [Aceeri](https://github.com/Aceeri) * [Alainx277](https://github.com/Alainx277) -## 0.0.9 - 2022-07-25 +## 0.0.9 - 25-07-2022 ### Added ⭐ * Rechannel: added max_message_size configuration for channels. This also fixes an exploit over the block channel, it was possible to send a SliceMessage with a high value of number of slices, this would cause the channel to allocate a lot of memory causing out of memories errors. [(commit)](https://github.com/lucaspoffo/renet/commit/774d0eeb1d05356edc29a368561e735b0eb8ab9f) diff --git a/bevy_renet/Cargo.toml b/bevy_renet/Cargo.toml index 75b92934..f39fff4c 100644 --- a/bevy_renet/Cargo.toml +++ b/bevy_renet/Cargo.toml @@ -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.7" +version = "0.0.8" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -16,7 +16,7 @@ transport = ["renet/transport"] [dependencies] bevy = {version = "0.10.1", default-features = false} -renet = {path = "../renet", version = "0.0.11", features = ["bevy"]} +renet = {path = "../renet", version = "0.0.12", features = ["bevy"]} [dev-dependencies] bevy = {version = "0.10.1", default-features = false, features = ["bevy_core_pipeline", "bevy_render", "bevy_asset", "bevy_pbr", "x11"]} diff --git a/bevy_renet/README.md b/bevy_renet/README.md index b5955a08..9f18754e 100644 --- a/bevy_renet/README.md +++ b/bevy_renet/README.md @@ -120,7 +120,7 @@ If you want a more complex example you can checkout the [demo_bevy](https://gith |bevy|bevy_renet| |---|---| -|0.10|0.0.7| +|0.10|0.0.8| |0.9|0.0.6| |0.8|0.0.5| |0.7|0.0.4| diff --git a/renet/Cargo.toml b/renet/Cargo.toml index f53c6cf4..425f8e01 100644 --- a/renet/Cargo.toml +++ b/renet/Cargo.toml @@ -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.11" +version = "0.0.12" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] @@ -20,7 +20,7 @@ bevy_ecs = { version = "0.10.1", optional = true } bytes = "1.1" log = "0.4.17" octets = "0.2" -renetcode = { path = "../renetcode", version = "0.0.7", optional = true } +renetcode = { path = "../renetcode", version = "0.0.8", optional = true } [dev-dependencies] env_logger = "0.10.0" diff --git a/renet_visualizer/Cargo.toml b/renet_visualizer/Cargo.toml index 71036548..c1b43fb6 100644 --- a/renet_visualizer/Cargo.toml +++ b/renet_visualizer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "renet_visualizer" -version = "0.0.4" +version = "0.0.5" keywords = ["gamedev", "networking"] description = "Egui metrics visualizer for the renet crate: Server/Client network library for multiplayer games" repository = "https://github.com/lucaspoffo/renet" @@ -13,6 +13,6 @@ edition = "2021" bevy = ["dep:bevy_ecs"] [dependencies] -renet = { path = "../renet", version = "0.0.11" } +renet = { path = "../renet", version = "0.0.12" } egui = "0.21" bevy_ecs = { version = "0.10.0", optional = true } diff --git a/renetcode/Cargo.toml b/renetcode/Cargo.toml index d68aab26..1d971e5b 100644 --- a/renetcode/Cargo.toml +++ b/renetcode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "renetcode" -version = "0.0.7" +version = "0.0.8" description = "Server/Client network protocol library for multiplayer games" keywords = ["gamedev", "networking", "cryptography"] repository = "https://github.com/lucaspoffo/renet"