Skip to content

Commit

Permalink
fix: wrong ver
Browse files Browse the repository at this point in the history
  • Loading branch information
skifli authored Oct 3, 2024
1 parent 5a8b3ff commit 160546e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bruty_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bruty_client"
authors = ["skifli"]
version = "0.3.2"
version = "0.3.3"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion bruty_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bruty_server"
authors = ["skifli"]
version = "0.3.1"
version = "0.3.3"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion bruty_server/src/payload_handlers.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 160546e

Please sign in to comment.