Skip to content

Commit

Permalink
Renet: release 0.0.12
Browse files Browse the repository at this point in the history
Renet -> 0.0.12
BevyRenet -> 0.0.8
Renetcode -> 0.0.8
RenetVisualizer -> 0.0.5
  • Loading branch information
lucaspoffo committed May 19, 2023
1 parent 5f4fa72 commit f7a40f7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Renet changelog

## Unreleased
## 0.0.12 - 19-05-2023

This release comes with 3 major changes:

Expand Down Expand Up @@ -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 ⭐

Expand All @@ -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 ⭐

Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions bevy_renet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"]}
Expand Down
2 changes: 1 addition & 1 deletion bevy_renet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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|
4 changes: 2 additions & 2 deletions renet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"
4 changes: 2 additions & 2 deletions renet_visualizer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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 }
2 changes: 1 addition & 1 deletion renetcode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit f7a40f7

Please sign in to comment.