From 736e718b08d3d74b4d2450e5606d01b63b9e60b0 Mon Sep 17 00:00:00 2001 From: suzumiya Date: Tue, 28 Nov 2023 14:41:59 +0800 Subject: [PATCH] chore: Release --- Cargo.toml | 2 +- taos-optin/Cargo.toml | 2 +- taos-query/Cargo.toml | 2 +- taos-sys/Cargo.toml | 2 +- taos-ws/Cargo.toml | 2 +- taos/Cargo.toml | 8 ++++---- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a789661c..b5dc9793 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ resolver = "2" [workspace.package] edition = "2021" -version = "0.10.21" +version = "0.10.22" authors = ["Linhe Huo "] categories = ["database", "api-bindings", "asynchronous"] diff --git a/taos-optin/Cargo.toml b/taos-optin/Cargo.toml index a6d6fbd2..1b2e686b 100644 --- a/taos-optin/Cargo.toml +++ b/taos-optin/Cargo.toml @@ -32,7 +32,7 @@ serde_repr = { version = "0.1.7", optional = true } tracing = { version = "0.1", features = ["log"] } # taos-error = { version = "0.2.0", path = "../taos-error" } taos-macros = { version = "0.*", path = "../taos-macros" } -taos-query = { version = "0.10.21", path = "../taos-query" } +taos-query = { version = "0.10.22", path = "../taos-query" } # time_this = "0.2.4" fun_time = "0.2.1" diff --git a/taos-query/Cargo.toml b/taos-query/Cargo.toml index 1d7aaa63..588a0e1d 100644 --- a/taos-query/Cargo.toml +++ b/taos-query/Cargo.toml @@ -27,7 +27,7 @@ parse_duration = "2.1" prettytable = "0.10.0" rust_decimal = { version = "1", features = ["c-repr"] } rustversion = "1.0.6" -taos-error = { path = "../taos-error", version = "0.10.21" } +taos-error = { path = "../taos-error", version = "0.10.22" } thiserror = "1.0.47" url = "2.2.2" diff --git a/taos-sys/Cargo.toml b/taos-sys/Cargo.toml index 13f61bdf..a0ff6a85 100644 --- a/taos-sys/Cargo.toml +++ b/taos-sys/Cargo.toml @@ -31,7 +31,7 @@ serde_json = "1.0" serde_repr = { version = "0.1.7", optional = true } # taos-error = { path = "../taos-error", version = "0.2.9" } taos-macros = { path = "../taos-macros", version = "0.*" } -taos-query = { path = "../taos-query", version = "0.10.21" } +taos-query = { path = "../taos-query", version = "0.10.22" } [build-dependencies] dotenv = "0.15.0" diff --git a/taos-ws/Cargo.toml b/taos-ws/Cargo.toml index 324e4e2a..cc59f54a 100644 --- a/taos-ws/Cargo.toml +++ b/taos-ws/Cargo.toml @@ -27,7 +27,7 @@ serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } serde_repr = "0.1.8" serde_with = "3.0.0" -taos-query = { path = "../taos-query", version = "0.10.21" } +taos-query = { path = "../taos-query", version = "0.10.22" } thiserror = "1.0.47" tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros", "io-util", "time"] } tokio-tungstenite = { version = "0.20.1" } diff --git a/taos/Cargo.toml b/taos/Cargo.toml index 351a6660..3b984775 100644 --- a/taos/Cargo.toml +++ b/taos/Cargo.toml @@ -19,10 +19,10 @@ no-default-features = true [dependencies] async-trait = "0.1" log = "0.4.17" -taos-optin = { path = "../taos-optin", version = "0.10.21", optional = true } -taos-query = { path = "../taos-query", version = "0.10.21", default-features = false } -taos-sys = { path = "../taos-sys", version = "0.10.21", optional = true } -taos-ws = { path = "../taos-ws", version = "0.10.21", optional = true } +taos-optin = { path = "../taos-optin", version = "0.10.22", optional = true } +taos-query = { path = "../taos-query", version = "0.10.22", default-features = false } +taos-sys = { path = "../taos-sys", version = "0.10.22", optional = true } +taos-ws = { path = "../taos-ws", version = "0.10.22", optional = true } futures = { version = "0.3", features = ["executor"] } [dev-dependencies]