From 32d4783770fb9f0d057f15605e8e235074c78766 Mon Sep 17 00:00:00 2001 From: SyS Date: Thu, 27 Apr 2023 19:40:08 +0530 Subject: [PATCH] release v1.1.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- include/tgconnector.inc | 2 +- src/lib.rs | 2 +- src/plugin.rs | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5273e5c..02b5480 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -627,7 +627,7 @@ dependencies = [ [[package]] name = "tgconnector" -version = "1.0.0" +version = "1.1.0" dependencies = [ "encoding", "fern", diff --git a/Cargo.toml b/Cargo.toml index da3d1c8..546fc57 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tgconnector" -version = "1.0.0" +version = "1.1.0" authors = ["Sreyas-Sreelal"] edition = "2018" diff --git a/include/tgconnector.inc b/include/tgconnector.inc index 5a3fd36..01dce2e 100644 --- a/include/tgconnector.inc +++ b/include/tgconnector.inc @@ -7,7 +7,7 @@ #endif #define _tgconnector_included -#define TGCONNECTOR_VERSION 100 +#define TGCONNECTOR_VERSION 110 #define INVALID_MESSAGE_ID (TGMessage:-1) #define INVALID_BOT_ID (TGBot:-1) #define INVALID_TOPIC_ID (TGTopic:-1) diff --git a/src/lib.rs b/src/lib.rs index 5b5bbab..5c14275 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -55,7 +55,7 @@ initialize_plugin!( .apply(); TgConnector { - plugin_version: 100, + plugin_version: 110, amx_list: Vec::new(), bots: HashMap::new(), bot_context_id: 0, diff --git a/src/plugin.rs b/src/plugin.rs index d8358ed..9c69087 100644 --- a/src/plugin.rs +++ b/src/plugin.rs @@ -25,7 +25,7 @@ impl SampPlugin for TgConnector { " ############################################################### # TGConnector # - # v1.0.0 # + # v1.1.0 # # Found any bugs? Report it here: # # https://github.com/Sreyas-Sreelal/tgconnector/issues # # # @@ -35,7 +35,7 @@ impl SampPlugin for TgConnector { } fn on_unload(self: &mut TgConnector) { - info!("**TGConnector v1.0.0!"); + info!("**TGConnector v1.1.0!"); } fn on_amx_load(&mut self, amx: &Amx) {