Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed Nov 25, 2024
1 parent 7824911 commit 1e8bb39
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 25 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-22.04, windows-latest, macos-13]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -109,6 +109,8 @@ jobs:
universal2: true
- version: "3.12"
universal2: true
- version: "3.13"
universal2: true
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -154,7 +156,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
target: [x64, x86]
steps:
- name: Checkout
Expand Down Expand Up @@ -193,7 +195,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
target: [x86_64, i686]
steps:
- name: Checkout
Expand Down Expand Up @@ -227,7 +229,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
target: [aarch64]
steps:
- name: Checkout
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
universal2: true
- version: "3.12"
universal2: true
- version: "3.13"
universal2: true
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -67,7 +69,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
target: [x64, x86]
steps:
- name: Checkout
Expand Down Expand Up @@ -104,7 +106,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
target: [x86_64, i686]
steps:
- name: Checkout
Expand Down Expand Up @@ -136,7 +138,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
target: [aarch64]
steps:
- name: Checkout
Expand Down
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.43"
version = "1.1.0"
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.43"
version = "1.1.0"
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.43"
version = "1.1.0"

[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.43"
version = "1.1.0"
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.43"
version = "1.1.0"

[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.43"
version = "1.1.0"
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.43"
version = "1.1.0"
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.43"
version = "1.1.0"
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.43"
version = "1.1.0"
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.43" }
longport-httpcli = { path = "crates/httpclient", version = "1.0.43" }
longport-proto = { path = "crates/proto", version = "1.0.43" }
longport-candlesticks = { path = "crates/candlesticks", version = "1.0.43" }
longport-wscli = { path = "crates/wsclient", version = "1.1.0" }
longport-httpcli = { path = "crates/httpclient", version = "1.1.0" }
longport-proto = { path = "crates/proto", version = "1.1.0" }
longport-candlesticks = { path = "crates/candlesticks", version = "1.1.0" }

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.43"
version = "1.1.0"
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.43"
version = "1.1.0"
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.43"
version = "1.1.0"
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.43"
version = "1.1.0"
edition = "2021"
description = "LongPort Websocket SDK for Rust"
license = "MIT OR Apache-2.0"

[dependencies]
longport-proto = { path = "../proto", version = "1.0.43" }
longport-proto = { path = "../proto", version = "1.1.0" }

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

0 comments on commit 1e8bb39

Please sign in to comment.