diff --git a/c/Cargo.toml b/c/Cargo.toml index 2cbcbaef1..9db249216 100644 --- a/c/Cargo.toml +++ b/c/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-c" -version = "1.0.26" +version = "1.0.27" 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 53d79c7cc..3c0fb4520 100644 --- a/c/crates/macros/Cargo.toml +++ b/c/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "longport-c-macros" -version = "1.0.26" +version = "1.0.27" edition = "2021" [lib] diff --git a/java/Cargo.toml b/java/Cargo.toml index 16ab708cb..a6829fd3f 100644 --- a/java/Cargo.toml +++ b/java/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-java" -version = "1.0.26" +version = "1.0.27" [lib] crate-type = ["cdylib"] diff --git a/java/crates/macros/Cargo.toml b/java/crates/macros/Cargo.toml index f8b6b806d..69d953e28 100644 --- a/java/crates/macros/Cargo.toml +++ b/java/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "longport-java-macros" -version = "1.0.26" +version = "1.0.27" edition = "2021" [lib] diff --git a/nodejs/Cargo.toml b/nodejs/Cargo.toml index b26324aa3..8d3b88558 100644 --- a/nodejs/Cargo.toml +++ b/nodejs/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-nodejs" -version = "1.0.26" +version = "1.0.27" [lib] crate-type = ["cdylib"] diff --git a/nodejs/crates/macros/Cargo.toml b/nodejs/crates/macros/Cargo.toml index 69e744f7c..f8e74412e 100644 --- a/nodejs/crates/macros/Cargo.toml +++ b/nodejs/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "longport-nodejs-macros" -version = "1.0.26" +version = "1.0.27" edition = "2021" [lib] diff --git a/python/Cargo.toml b/python/Cargo.toml index 540081a0d..ef8815605 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-python" -version = "1.0.26" +version = "1.0.27" description = "LongPort OpenAPI SDK for Python" homepage = "https://open.longportapp.com/en/" readme = "README.md" diff --git a/python/Makefile.toml b/python/Makefile.toml index c8c66294c..d55a9ec63 100644 --- a/python/Makefile.toml +++ b/python/Makefile.toml @@ -12,7 +12,7 @@ args = ["install", "maturin>=1.0,<2.0"] command = "pip" args = [ "install", - "target/wheels/longport-1.0.26-cp311-none-win_amd64.whl", + "target/wheels/longport-1.0.27-cp311-none-win_amd64.whl", "-I", ] dependencies = ["python"] diff --git a/python/crates/macros/Cargo.toml b/python/crates/macros/Cargo.toml index ea88099ba..66548594a 100644 --- a/python/crates/macros/Cargo.toml +++ b/python/crates/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "longport-python-macros" -version = "1.0.26" +version = "1.0.27" edition = "2021" [lib] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 7a64e1fad..9cbf23f7c 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport" -version = "1.0.26" +version = "1.0.27" 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 = "1.0.26" } -longport-httpcli = { path = "crates/httpclient", version = "1.0.26" } -longport-proto = { path = "crates/proto", version = "1.0.26" } -longport-candlesticks = { path = "crates/candlesticks", version = "1.0.26" } +longport-wscli = { path = "crates/wsclient", version = "1.0.27" } +longport-httpcli = { path = "crates/httpclient", version = "1.0.27" } +longport-proto = { path = "crates/proto", version = "1.0.27" } +longport-candlesticks = { path = "crates/candlesticks", version = "1.0.27" } tokio = { version = "1.18.2", features = [ "time", diff --git a/rust/crates/candlesticks/Cargo.toml b/rust/crates/candlesticks/Cargo.toml index 3fe626527..263c57dbb 100644 --- a/rust/crates/candlesticks/Cargo.toml +++ b/rust/crates/candlesticks/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-candlesticks" -version = "1.0.26" +version = "1.0.27" 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 573efc079..f09765083 100644 --- a/rust/crates/httpclient/Cargo.toml +++ b/rust/crates/httpclient/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-httpcli" -version = "1.0.26" +version = "1.0.27" 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 ad61b5d6c..471c57b2a 100644 --- a/rust/crates/proto/Cargo.toml +++ b/rust/crates/proto/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "longport-proto" -version = "1.0.26" +version = "1.0.27" description = "LongPort Protocol" license = "MIT OR Apache-2.0" diff --git a/rust/crates/wsclient/Cargo.toml b/rust/crates/wsclient/Cargo.toml index 972cbc006..cdd583a02 100644 --- a/rust/crates/wsclient/Cargo.toml +++ b/rust/crates/wsclient/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "longport-wscli" -version = "1.0.26" +version = "1.0.27" edition = "2021" description = "LongPort Websocket SDK for Rust" license = "MIT OR Apache-2.0" [dependencies] -longport-proto = { path = "../proto", version = "1.0.26" } +longport-proto = { path = "../proto", version = "1.0.27" } tokio = { version = "1.18.2", features = [ "time",