diff --git a/Cargo.lock b/Cargo.lock index a5feae6..cd3e643 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -258,7 +258,7 @@ dependencies = [ [[package]] name = "samp-bcrypt" -version = "0.2.3" +version = "0.3.1" dependencies = [ "bcrypt 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", "fern 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index f7800e3..8986daf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "samp-bcrypt" -version = "0.3.0" +version = "0.3.1" edition = "2018" authors = ["Sreyas "] diff --git a/src/plugin.rs b/src/plugin.rs index d407b51..7bb9961 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.0"); + info!("Version: 0.3.1"); let (verify_sender, verify_receiver) = channel(); self.verify_sender = Some(verify_sender); self.verify_receiver = Some(verify_receiver);