diff --git a/Cargo.toml b/Cargo.toml index 7bb101a..4547280 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "samp-bcrypt" -version = "0.3.2" +version = "0.3.3" edition = "2018" authors = ["Sreyas "] diff --git a/src/plugin.rs b/src/plugin.rs index f16cba3..44f2e0b 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -20,7 +20,7 @@ pub struct SampBcrypt { impl SampPlugin for SampBcrypt { fn on_load(&mut self) { - info!("Version: 0.3.2"); + info!("Version: 0.3.3"); let (verify_sender, verify_receiver) = channel(); self.verify_sender = Some(verify_sender); self.verify_receiver = Some(verify_receiver);