diff --git a/bruty_client/Cargo.toml b/bruty_client/Cargo.toml index 84ad379..57976fd 100644 --- a/bruty_client/Cargo.toml +++ b/bruty_client/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bruty_client" authors = ["skifli"] -version = "0.3.2" +version = "0.3.3" edition = "2021" [dependencies] diff --git a/bruty_server/Cargo.toml b/bruty_server/Cargo.toml index d7e2b6c..58b9179 100644 --- a/bruty_server/Cargo.toml +++ b/bruty_server/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bruty_server" authors = ["skifli"] -version = "0.3.1" +version = "0.3.3" edition = "2021" [dependencies] diff --git a/bruty_server/src/payload_handlers.rs b/bruty_server/src/payload_handlers.rs index ecd96be..a0e1836 100644 --- a/bruty_server/src/payload_handlers.rs +++ b/bruty_server/src/payload_handlers.rs @@ -1,7 +1,7 @@ use crate::{SplitSinkExt, WebSocketSender}; use futures_util::SinkExt; -const ALLOWED_CLIENT_VERSIONS: &[&str] = &["0.3.2"]; +const ALLOWED_CLIENT_VERSIONS: &[&str] = &["0.3.3"]; /// Checks if the connection is authenticated. /// If not, it sends an InvalidSession OP code and closes the connection.