Skip to content

Commit

Permalink
v1.0.37
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed Sep 23, 2024
1 parent 135cd62 commit 641dc9d
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "longport-c"
version = "1.0.36"
version = "1.0.37"
description = "LongPort OpenAPI SDK for C"
homepage = "https://open.longportapp.com/en/"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion c/crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "longport-c-macros"
version = "1.0.36"
version = "1.0.37"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion java/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "longport-java"
version = "1.0.36"
version = "1.0.37"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion java/crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "longport-java-macros"
version = "1.0.36"
version = "1.0.37"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion nodejs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "longport-nodejs"
version = "1.0.36"
version = "1.0.37"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion nodejs/crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "longport-nodejs-macros"
version = "1.0.36"
version = "1.0.37"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "longport-python"
version = "1.0.36"
version = "1.0.37"
description = "LongPort OpenAPI SDK for Python"
homepage = "https://open.longportapp.com/en/"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion python/crates/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "longport-python-macros"
version = "1.0.36"
version = "1.0.37"
edition = "2021"

[lib]
Expand Down
10 changes: 5 additions & 5 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "longport"
version = "1.0.36"
version = "1.0.37"
description = "LongPort OpenAPI SDK for Rust"
homepage = "https://open.longportapp.com/en/"
readme = "README.md"
Expand All @@ -14,10 +14,10 @@ categories = ["api-bindings"]
blocking = ["flume"]

[dependencies]
longport-wscli = { path = "crates/wsclient", version = "1.0.36" }
longport-httpcli = { path = "crates/httpclient", version = "1.0.36" }
longport-proto = { path = "crates/proto", version = "1.0.36" }
longport-candlesticks = { path = "crates/candlesticks", version = "1.0.36" }
longport-wscli = { path = "crates/wsclient", version = "1.0.37" }
longport-httpcli = { path = "crates/httpclient", version = "1.0.37" }
longport-proto = { path = "crates/proto", version = "1.0.37" }
longport-candlesticks = { path = "crates/candlesticks", version = "1.0.37" }

tokio = { version = "1.18.2", features = [
"time",
Expand Down
2 changes: 1 addition & 1 deletion rust/crates/candlesticks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "longport-candlesticks"
version = "1.0.36"
version = "1.0.37"
description = "LongPort candlestick utils for Rust"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion rust/crates/httpclient/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "longport-httpcli"
version = "1.0.36"
version = "1.0.37"
description = "LongPort HTTP SDK for Rust"
license = "MIT OR Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion rust/crates/proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "longport-proto"
version = "1.0.36"
version = "1.0.37"
description = "LongPort Protocol"
license = "MIT OR Apache-2.0"

Expand Down
4 changes: 2 additions & 2 deletions rust/crates/wsclient/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "longport-wscli"
version = "1.0.36"
version = "1.0.37"
edition = "2021"
description = "LongPort Websocket SDK for Rust"
license = "MIT OR Apache-2.0"

[dependencies]
longport-proto = { path = "../proto", version = "1.0.36" }
longport-proto = { path = "../proto", version = "1.0.37" }

tokio = { version = "1.18.2", features = [
"time",
Expand Down

0 comments on commit 641dc9d

Please sign in to comment.