From 2e0830552f821d3d3d485a0692632b1095f56f6e Mon Sep 17 00:00:00 2001 From: Sunli Date: Tue, 14 Jan 2025 09:33:55 +0800 Subject: [PATCH] v2.1.6 --- c/Cargo.toml | 2 +- c/crates/macros/Cargo.toml | 2 +- java/Cargo.toml | 2 +- java/crates/macros/Cargo.toml | 2 +- nodejs/Cargo.toml | 2 +- nodejs/crates/macros/Cargo.toml | 2 +- python/Cargo.toml | 2 +- python/crates/macros/Cargo.toml | 2 +- rust/Cargo.toml | 10 +++++----- rust/crates/candlesticks/Cargo.toml | 2 +- rust/crates/httpclient/Cargo.toml | 2 +- rust/crates/proto/Cargo.toml | 2 +- rust/crates/wsclient/Cargo.toml | 4 ++-- 13 files changed, 18 insertions(+), 18 deletions(-) diff --git a/c/Cargo.toml b/c/Cargo.toml index 7475416db..789f1143d 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-c" -version = "2.1.5" +version = "2.1.6" 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 aab8dd0dd..76faf3a76 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.5" +version = "2.1.6" edition = "2021" [lib] diff --git a/java/Cargo.toml b/java/Cargo.toml index 3d7b3154d..b7af263e7 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-java" -version = "2.1.5" +version = "2.1.6" [lib] crate-type = ["cdylib"] diff --git a/java/crates/macros/Cargo.toml b/java/crates/macros/Cargo.toml index 66d8ac052..1ea2c9228 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.5" +version = "2.1.6" edition = "2021" [lib] diff --git a/nodejs/Cargo.toml b/nodejs/Cargo.toml index 62fabb7f1..4dec0aca6 100644 --- a/nodejs/Cargo.toml +++ b/nodejs/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-nodejs" -version = "2.1.5" +version = "2.1.6" [lib] crate-type = ["cdylib"] diff --git a/nodejs/crates/macros/Cargo.toml b/nodejs/crates/macros/Cargo.toml index 75bbdf8e6..7adeea2b2 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.5" +version = "2.1.6" edition = "2021" [lib] diff --git a/python/Cargo.toml b/python/Cargo.toml index 83804d82c..de275ab35 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-python" -version = "2.1.5" +version = "2.1.6" 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 434b1ad0f..027cf5cad 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.5" +version = "2.1.6" edition = "2021" [lib] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 2b29718e1..6c4a23c5d 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport" -version = "2.1.5" +version = "2.1.6" 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.5" } -longport-httpcli = { path = "crates/httpclient", version = "2.1.5" } -longport-proto = { path = "crates/proto", version = "2.1.5" } -longport-candlesticks = { path = "crates/candlesticks", version = "2.1.5" } +longport-wscli = { path = "crates/wsclient", version = "2.1.6" } +longport-httpcli = { path = "crates/httpclient", version = "2.1.6" } +longport-proto = { path = "crates/proto", version = "2.1.6" } +longport-candlesticks = { path = "crates/candlesticks", version = "2.1.6" } tokio = { version = "1.18.2", features = [ "time", diff --git a/rust/crates/candlesticks/Cargo.toml b/rust/crates/candlesticks/Cargo.toml index ceadba824..6c500572b 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.5" +version = "2.1.6" 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 32407e80f..ea3b34fac 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.5" +version = "2.1.6" 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 e56af9040..c091dfbe9 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.5" +version = "2.1.6" description = "LongPort Protocol" license = "MIT OR Apache-2.0" diff --git a/rust/crates/wsclient/Cargo.toml b/rust/crates/wsclient/Cargo.toml index 02ca9c903..f7ebacfab 100644 --- a/rust/crates/wsclient/Cargo.toml +++ b/rust/crates/wsclient/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "longport-wscli" -version = "2.1.5" +version = "2.1.6" edition = "2021" description = "LongPort Websocket SDK for Rust" license = "MIT OR Apache-2.0" [dependencies] -longport-proto = { path = "../proto", version = "2.1.5" } +longport-proto = { path = "../proto", version = "2.1.6" } tokio = { version = "1.18.2", features = [ "time",