Skip to content

Commit 92ac404

Browse files
committed
chore: Release
1 parent a68abd6 commit 92ac404

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ resolver = "2"
1414

1515
[workspace.package]
1616
edition = "2021"
17-
version = "0.10.7"
17+
version = "0.10.8"
1818

1919
authors = ["Linhe Huo <linhe.huo@gmail.com>"]
2020
categories = ["database", "api-bindings", "asynchronous"]

mdsn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdsn"
3-
version = "0.2.17"
3+
version = "0.2.18"
44
edition = "2021"
55
keywords = ["url", "dsn", "mdsn"]
66
license = "MIT OR Apache-2.0"

taos-error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version.workspace = true
1212

1313
[dependencies]
1414
derive_more = "0.99"
15-
mdsn = {path = "../mdsn", version = "0.2.17" }
15+
mdsn = {path = "../mdsn", version = "0.2.18" }
1616
serde = {version = "1", features = ["derive"], optional = true}
1717
thiserror = "1.0.47"
1818
anyhow = { version = "1", features = ["backtrace"] }

taos-optin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ serde_json = "1.0"
3131
serde_repr = {version = "0.1.7", optional = true}
3232
# taos-error = { version = "0.2.0", path = "../taos-error" }
3333
taos-macros = {version = "0.*", path = "../taos-macros"}
34-
taos-query = {version = "0.10.7", path = "../taos-query"}
34+
taos-query = {version = "0.10.8", path = "../taos-query"}
3535

3636
# time_this = "0.2.4"
3737
fun_time = "0.2.1"

taos-query/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ chrono = { version = "0.4", features = ["serde"] }
2020
derive_more = "0.99"
2121
itertools = "0.10.3"
2222
log = "0.4"
23-
mdsn = { path = "../mdsn", version = "0.2.17" }
23+
mdsn = { path = "../mdsn", version = "0.2.18" }
2424
num_enum = "0.6.1"
2525
once_cell = "1.12.0"
2626
parse_duration = "2.1"
2727
prettytable = "0.10.0"
2828
rust_decimal = { version = "1", features = ["c-repr"] }
2929
rustversion = "1.0.6"
30-
taos-error = { path = "../taos-error", version = "0.10.7" }
30+
taos-error = { path = "../taos-error", version = "0.10.8" }
3131
thiserror = "1.0.47"
3232
url = "2.2.2"
3333

taos-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ serde_json = "1.0"
3131
serde_repr = { version = "0.1.7", optional = true }
3232
# taos-error = { path = "../taos-error", version = "0.2.9" }
3333
taos-macros = { path = "../taos-macros", version = "0.*" }
34-
taos-query = { path = "../taos-query", version = "0.10.7" }
34+
taos-query = { path = "../taos-query", version = "0.10.8" }
3535

3636
[build-dependencies]
3737
dotenv = "0.15.0"

taos-ws/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ serde = { version = "1", features = ["derive"] }
2727
serde_json = { version = "1" }
2828
serde_repr = "0.1.8"
2929
serde_with = "3.0.0"
30-
taos-query = { path = "../taos-query", version = "0.10.7" }
30+
taos-query = { path = "../taos-query", version = "0.10.8" }
3131
thiserror = "1.0.47"
3232
tokio = { version = "1", features = ["sync", "rt-multi-thread", "macros", "io-util", "time"] }
3333
tokio-tungstenite = { version = "0.18.0" }

taos/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ no-default-features = true
1919
[dependencies]
2020
async-trait = "0.1"
2121
log = "0.4.17"
22-
taos-optin = { path = "../taos-optin", version = "0.10.7", optional = true }
23-
taos-query = { path = "../taos-query", version = "0.10.7", default-features = false }
24-
taos-sys = { path = "../taos-sys", version = "0.10.7", optional = true }
25-
taos-ws = { path = "../taos-ws", version = "0.10.7", optional = true }
22+
taos-optin = { path = "../taos-optin", version = "0.10.8", optional = true }
23+
taos-query = { path = "../taos-query", version = "0.10.8", default-features = false }
24+
taos-sys = { path = "../taos-sys", version = "0.10.8", optional = true }
25+
taos-ws = { path = "../taos-ws", version = "0.10.8", optional = true }
2626
futures = { version = "0.3", features = ["executor"] }
2727

2828
[dev-dependencies]

0 commit comments

Comments
 (0)