From aedbd7d627a53eb5cdc226504dde1f42c3ad5269 Mon Sep 17 00:00:00 2001 From: Ladislav Hano Date: Sun, 26 Jan 2025 23:52:00 +0100 Subject: [PATCH] chore: updated version for release --- Cargo.toml | 2 +- src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5f359bb..b4ac9bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moover_rust" -version = "3.3.1" +version = "3.4.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/main.rs b/src/main.rs index 3b67ffe..5047ce2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -58,7 +58,7 @@ impl EventHandler for Handler { } async fn ready(&self, ctx: Context, ready: Ready) { - println!("{} v3.3.1 is connected!", ready.user.name); + println!("{} v{} is connected!", ready.user.name, option_env!("CARGO_PKG_VERSION").unwrap_or("")); #[cfg(feature="RELEASE")] { use utils::debug::hello;