From 6f33ff7166922d60a00ca121e1235aa61d63eee8 Mon Sep 17 00:00:00 2001 From: ss-sonic Date: Wed, 5 Feb 2025 23:43:31 +0400 Subject: [PATCH 1/2] Bump Tokio dependency to version 1.41.1 - Update Tokio runtime dependency to latest version - Ensure compatibility with recent Tokio improvements --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b1d9bdc..57c8f04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ categories = [ anyhow = "1.0" async-trait = "0.1" tokio-stream = "0.1" -tokio = { version = "1.32", features = ["full"] } +tokio = { version = "1.41.1", features = ["full"] } tracing = "0.1" thiserror = "2.0.11" prometheus = { version = "0.13", optional = true } From 7d9389cffc7fa4e4692dcb8952b6208fadc0f55a Mon Sep 17 00:00:00 2001 From: ss-sonic Date: Wed, 5 Feb 2025 23:44:17 +0400 Subject: [PATCH 2/2] Bump version to 1.0.2 - Increment package version in Cargo.toml - Minor version update to prepare for potential patch release --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 57c8f04..7e209df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "botcore" -version = "1.0.1" +version = "1.0.2" edition = "2021" rust-version = "1.84.1" description = "Production-grade asynchronous bot engine with enterprise observability features"