Skip to content

Commit

Permalink
release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sreyas-Sreelal committed Apr 27, 2020
1 parent 8b4b8e0 commit 567013e
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 = "0.2.0"
version = "0.3.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 20
#define TGCONNECTOR_VERSION 30
#define INVALID_MESSAGE_ID (TGMessage:-1)
#define INVALID_BOT_ID (TGBot:-1)

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ initialize_plugin!(
.apply();

TgConnector {
plugin_version: 20,
plugin_version: 30,
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 #
# v0.2.0 Loaded!! #
# v0.3.0 Loaded!! #
# 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: Box<TgConnector>) {
info!("**TGConnector v0.2.0 Unloaded!");
info!("**TGConnector v0.3.0 Unloaded!");
}

fn on_amx_load(&mut self, amx: &Amx) {
Expand Down

0 comments on commit 567013e

Please sign in to comment.