diff --git a/Cargo.lock b/Cargo.lock index 8b23fed..17b626e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2078,7 +2078,7 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tmc" -version = "1.0.4" +version = "1.0.5" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index c764ceb..d7c127f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tmc" -version = "1.0.4" +version = "1.0.5" authors = ["HoolaBoola ", "Robustic ", "ShootingStar91 ", diff --git a/src/commands/command_util.rs b/src/commands/command_util.rs index e6d424d..ecaa38e 100644 --- a/src/commands/command_util.rs +++ b/src/commands/command_util.rs @@ -16,6 +16,7 @@ use tmc_langs::LangsError; use tmc_langs::{ConfigValue, ProjectsConfig, TmcConfig}; pub const PLUGIN: &str = "tmc_cli_rust"; +pub const PLUGIN_VERSION: &str = "1.0.5"; pub const SUCCESSFUL_LOGIN: &str = "Logged in successfully!"; pub const WRONG_LOGIN: &str = "Wrong username or password"; @@ -77,7 +78,7 @@ impl ClientProduction { let (tmc_client, _credentials) = tmc_langs::init_tmc_client_with_credentials( Url::parse(SERVER_ADDRESS).expect("Server address should always be correct."), PLUGIN, - "1.0.0", + PLUGIN_VERSION, ) .unwrap();