diff --git a/Cargo.toml b/Cargo.toml index bafbc65d..72d231e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ [workspace.package] edition = "2021" -version = "0.8.7" +version = "0.8.8" authors = ["Linhe Huo "] categories = ["database", "api-bindings", "asynchronous"] keywords = ["timeseries", "database", "tdengine", "taosdata", "connection"] diff --git a/mdsn/Cargo.toml b/mdsn/Cargo.toml index 154c5547..f8a3caa5 100644 --- a/mdsn/Cargo.toml +++ b/mdsn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdsn" -version = "0.2.14" +version = "0.2.15" edition = "2021" keywords = ["url", "dsn", "mdsn"] license = "MIT OR Apache-2.0" diff --git a/taos-error/Cargo.toml b/taos-error/Cargo.toml index 833c6df6..ca25bc4b 100644 --- a/taos-error/Cargo.toml +++ b/taos-error/Cargo.toml @@ -14,7 +14,7 @@ repository.workspace = true [dependencies] serde = { version = "1", features = ["derive"], optional = true } -mdsn = { path = "../mdsn", version = "0.2.14" } +mdsn = { path = "../mdsn", version = "0.2.15" } thiserror = "1.0" [build-dependencies] diff --git a/taos-optin/Cargo.toml b/taos-optin/Cargo.toml index 5b421c89..ded8b37d 100644 --- a/taos-optin/Cargo.toml +++ b/taos-optin/Cargo.toml @@ -31,7 +31,7 @@ serde_json = "1.0" serde_repr = { version = "0.1.7", optional = true } # taos-error = { version = "0.2.0", path = "../taos-error" } taos-macros = { version = "0.*", path = "../taos-macros" } -taos-query = { version = "0.8.7", path = "../taos-query" } +taos-query = { version = "0.8.8", path = "../taos-query" } [dev-dependencies] anyhow = "1" diff --git a/taos-query/Cargo.toml b/taos-query/Cargo.toml index d63c9b9a..d1684add 100644 --- a/taos-query/Cargo.toml +++ b/taos-query/Cargo.toml @@ -20,14 +20,14 @@ chrono = { version = "0.4", features = ["serde"] } derive_more = "0.99" itertools = "0.10.3" log = "0.4" -mdsn = { path = "../mdsn", version = "0.2.14" } +mdsn = { path = "../mdsn", version = "0.2.15" } num_enum = "0.5.7" once_cell = "1.12.0" 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.8.7" } +taos-error = { path = "../taos-error", version = "0.8.8" } thiserror = "1.0" url = "2.2.2" diff --git a/taos-sys/Cargo.toml b/taos-sys/Cargo.toml index 859735b6..ca76019f 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.8.7" } +taos-query = { path = "../taos-query", version = "0.8.8" } [build-dependencies] dotenv = "0.15.0" diff --git a/taos-ws/Cargo.toml b/taos-ws/Cargo.toml index 76567ef3..f837b771 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 = "2.0.0" -taos-query = { path = "../taos-query", version = "0.8.7" } +taos-query = { path = "../taos-query", version = "0.8.8" } thiserror = "1" tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros", "io-util", "time"] } tokio-tungstenite = { version = "0.18.0" } diff --git a/taos/Cargo.toml b/taos/Cargo.toml index b2466a6b..23e70ed7 100644 --- a/taos/Cargo.toml +++ b/taos/Cargo.toml @@ -20,10 +20,10 @@ no-default-features = true anyhow = "1" async-trait = "0.1" log = "0.4.17" -taos-optin = { path = "../taos-optin", version = "0.8.7", optional = true } -taos-query = { path = "../taos-query", version = "0.8.7", default-features = false } -taos-sys = { path = "../taos-sys", version = "0.8.7", optional = true } -taos-ws = { path = "../taos-ws", version = "0.8.7", optional = true } +taos-optin = { path = "../taos-optin", version = "0.8.8", optional = true } +taos-query = { path = "../taos-query", version = "0.8.8", default-features = false } +taos-sys = { path = "../taos-sys", version = "0.8.8", optional = true } +taos-ws = { path = "../taos-ws", version = "0.8.8", optional = true } thiserror = "1" [dev-dependencies]