Skip to content

Commit

Permalink
release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sreyas-Sreelal committed Apr 27, 2023
1 parent 2e684b6 commit 32d4783
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tgconnector"
version = "1.0.0"
version = "1.1.0"
authors = ["Sreyas-Sreelal"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion include/tgconnector.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 #
# #
Expand All @@ -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) {
Expand Down

0 comments on commit 32d4783

Please sign in to comment.