diff --git a/c/Cargo.toml b/c/Cargo.toml index c667a1110..e3ca0fe77 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-c" -version = "2.1.9" +version = "2.1.10" description = "LongPort OpenAPI SDK for C" homepage = "https://open.longportapp.com/en/" readme = "README.md" diff --git a/c/crates/macros/Cargo.toml b/c/crates/macros/Cargo.toml index 593a68bd5..e1d3f1d5a 100644 --- a/c/crates/macros/Cargo.toml +++ b/c/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "longport-c-macros" -version = "2.1.9" +version = "2.1.10" edition = "2021" [lib] diff --git a/java/Cargo.toml b/java/Cargo.toml index 297c4289a..8570a3034 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-java" -version = "2.1.9" +version = "2.1.10" [lib] crate-type = ["cdylib"] diff --git a/java/crates/macros/Cargo.toml b/java/crates/macros/Cargo.toml index 224bec0d8..0cd735e99 100644 --- a/java/crates/macros/Cargo.toml +++ b/java/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "longport-java-macros" -version = "2.1.9" +version = "2.1.10" edition = "2021" [lib] diff --git a/nodejs/Cargo.toml b/nodejs/Cargo.toml index 69b5779fa..7c157b1a4 100644 --- a/nodejs/Cargo.toml +++ b/nodejs/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-nodejs" -version = "2.1.9" +version = "2.1.10" [lib] crate-type = ["cdylib"] diff --git a/nodejs/crates/macros/Cargo.toml b/nodejs/crates/macros/Cargo.toml index 6d0a99c23..1487cb1dd 100644 --- a/nodejs/crates/macros/Cargo.toml +++ b/nodejs/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "longport-nodejs-macros" -version = "2.1.9" +version = "2.1.10" edition = "2021" [lib] diff --git a/python/Cargo.toml b/python/Cargo.toml index 8a85b9699..215152a58 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-python" -version = "2.1.9" +version = "2.1.10" description = "LongPort OpenAPI SDK for Python" homepage = "https://open.longportapp.com/en/" readme = "README.md" diff --git a/python/crates/macros/Cargo.toml b/python/crates/macros/Cargo.toml index 333f43984..63156b9a9 100644 --- a/python/crates/macros/Cargo.toml +++ b/python/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "longport-python-macros" -version = "2.1.9" +version = "2.1.10" edition = "2021" [lib] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 0381cb16a..95fc6eb61 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport" -version = "2.1.9" +version = "2.1.10" description = "LongPort OpenAPI SDK for Rust" homepage = "https://open.longportapp.com/en/" readme = "README.md" @@ -14,10 +14,10 @@ categories = ["api-bindings"] blocking = ["flume"] [dependencies] -longport-wscli = { path = "crates/wsclient", version = "2.1.9" } -longport-httpcli = { path = "crates/httpclient", version = "2.1.9" } -longport-proto = { path = "crates/proto", version = "2.1.9" } -longport-candlesticks = { path = "crates/candlesticks", version = "2.1.9" } +longport-wscli = { path = "crates/wsclient", version = "2.1.10" } +longport-httpcli = { path = "crates/httpclient", version = "2.1.10" } +longport-proto = { path = "crates/proto", version = "2.1.10" } +longport-candlesticks = { path = "crates/candlesticks", version = "2.1.10" } tokio = { version = "1.18.2", features = [ "time", diff --git a/rust/crates/candlesticks/Cargo.toml b/rust/crates/candlesticks/Cargo.toml index edd439d95..3852d82ee 100644 --- a/rust/crates/candlesticks/Cargo.toml +++ b/rust/crates/candlesticks/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-candlesticks" -version = "2.1.9" +version = "2.1.10" description = "LongPort candlestick utils for Rust" license = "MIT OR Apache-2.0" diff --git a/rust/crates/httpclient/Cargo.toml b/rust/crates/httpclient/Cargo.toml index c98c6dc49..edced039e 100644 --- a/rust/crates/httpclient/Cargo.toml +++ b/rust/crates/httpclient/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-httpcli" -version = "2.1.9" +version = "2.1.10" description = "LongPort HTTP SDK for Rust" license = "MIT OR Apache-2.0" diff --git a/rust/crates/proto/Cargo.toml b/rust/crates/proto/Cargo.toml index a93fc8640..1d3d4d138 100644 --- a/rust/crates/proto/Cargo.toml +++ b/rust/crates/proto/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-proto" -version = "2.1.9" +version = "2.1.10" description = "LongPort Protocol" license = "MIT OR Apache-2.0" diff --git a/rust/crates/wsclient/Cargo.toml b/rust/crates/wsclient/Cargo.toml index ebad06de5..983308958 100644 --- a/rust/crates/wsclient/Cargo.toml +++ b/rust/crates/wsclient/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "longport-wscli" -version = "2.1.9" +version = "2.1.10" edition = "2021" description = "LongPort Websocket SDK for Rust" license = "MIT OR Apache-2.0" [dependencies] -longport-proto = { path = "../proto", version = "2.1.9" } +longport-proto = { path = "../proto", version = "2.1.10" } tokio = { version = "1.18.2", features = [ "time",