Skip to content

Commit 06203f9

Browse files
committed
Version 1.0.5
1 parent ec57ba3 commit 06203f9

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tmc"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
authors = ["HoolaBoola <jaime.heikkiladias@helsinki.fi>",
55
"Robustic <juha.malinen@helsinki.fi>",
66
"ShootingStar91 <arttu.kangas@helsinki.fi>",

src/commands/command_util.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ use tmc_langs::LangsError;
1616
use tmc_langs::{ConfigValue, ProjectsConfig, TmcConfig};
1717

1818
pub const PLUGIN: &str = "tmc_cli_rust";
19+
pub const PLUGIN_VERSION: &str = "1.0.5";
1920
pub const SUCCESSFUL_LOGIN: &str = "Logged in successfully!";
2021
pub const WRONG_LOGIN: &str = "Wrong username or password";
2122

@@ -77,7 +78,7 @@ impl ClientProduction {
7778
let (tmc_client, _credentials) = tmc_langs::init_tmc_client_with_credentials(
7879
Url::parse(SERVER_ADDRESS).expect("Server address should always be correct."),
7980
PLUGIN,
80-
"1.0.0",
81+
PLUGIN_VERSION,
8182
)
8283
.unwrap();
8384

0 commit comments

Comments
 (0)