Skip to content

Commit d26041b

Browse files
committed
v3.0.13
1 parent 6bbecb7 commit d26041b

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ jobs:
831831
steps:
832832
- uses: actions/checkout@v4
833833
- name: Update versions
834-
run: node ./.github/misc/update_jssdk_version.mjs $(sed -nE 's/^\s*version = "(.*?)"/\1/p' nodejs/Cargo.toml)
834+
run: node ./.github/misc/update_jssdk_version.mjs $(sed -nE 's/^\s*version = "(.*?)"/\1/p' Cargo.toml)
835835
- name: Setup node
836836
uses: actions/setup-node@v4
837837
with:

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ resolver = "3"
33
members = ["rust", "python", "nodejs", "java", "c", "mcp"]
44

55
[workspace.package]
6-
version = "3.0.12"
6+
version = "3.0.13"
77
edition = "2024"
88

99
[profile.release]
1010
lto = true
1111

1212
[workspace.dependencies]
13-
longport-wscli = { path = "rust/crates/wsclient", version = "3.0.12" }
14-
longport-httpcli = { path = "rust/crates/httpclient", version = "3.0.12" }
15-
longport-proto = { path = "rust/crates/proto", version = "3.0.12" }
16-
longport-candlesticks = { path = "rust/crates/candlesticks", version = "3.0.12" }
17-
longport = { path = "rust", version = "3.0.12" }
13+
longport-wscli = { path = "rust/crates/wsclient", version = "3.0.13" }
14+
longport-httpcli = { path = "rust/crates/httpclient", version = "3.0.13" }
15+
longport-proto = { path = "rust/crates/proto", version = "3.0.13" }
16+
longport-candlesticks = { path = "rust/crates/candlesticks", version = "3.0.13" }
17+
longport = { path = "rust", version = "3.0.13" }
1818

1919
tokio = "1.47.1"
2020
tokio-tungstenite = "0.27.0"

nodejs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition.workspace = true
33
name = "longport-nodejs"
4-
version = "3.0.12"
4+
version.workspace = true
55

66
[lib]
77
crate-type = ["cdylib"]

rust/crates/candlesticks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition.workspace = true
33
name = "longport-candlesticks"
4-
version = "3.0.12"
4+
version.workspace = true
55
description = "LongPort candlestick utils for Rust"
66
license = "MIT OR Apache-2.0"
77

rust/crates/httpclient/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition.workspace = true
33
name = "longport-httpcli"
4-
version = "3.0.12"
4+
version.workspace = true
55
description = "LongPort HTTP SDK for Rust"
66
license = "MIT OR Apache-2.0"
77

rust/crates/proto/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
edition.workspace = true
33
name = "longport-proto"
4-
version = "3.0.12"
4+
version.workspace = true
55
description = "LongPort Protocol"
66
license = "MIT OR Apache-2.0"
77

rust/crates/wsclient/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "longport-wscli"
3-
version = "3.0.12"
3+
version.workspace = true
44
edition.workspace = true
55
description = "LongPort Websocket SDK for Rust"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)