Skip to content

Commit

Permalink
Release 1.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
sunli829 committed Mar 2, 2024
1 parent af5bdd2 commit 103399a
Show file tree
Hide file tree
Showing 15 changed files with 23 additions and 23 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@ jobs:
sudo apt-get update
sudo apt-get install -y doxygen
- name: Build Rust docs
- name: Build Rust doc
run: cargo doc -p longport --no-deps
- name: Build Python wheels
uses: PyO3/maturin-action@v1
with:
target: "x86_64"
manylinux: auto
args: -i 3.9 --release --out dist --no-sdist -m python/Cargo.toml
args: -i python3.9 --release --out dist -m python/Cargo.toml
- name: Install built wheel
run: |
pip install longport --no-index --find-links dist --force-reinstall
python -c "import longport"
python3.9 -c "import longport"
- name: Build Python docs
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
if: ${{ matrix.python.universal2 }}
uses: PyO3/maturin-action@v1
with:
args: -i python --release --universal2 --out dist -m python/Cargo.toml
args: -i python --release --target universal2-apple-darwin --out dist -m python/Cargo.toml
- name: Install built wheel - universal2
if: ${{ matrix.python.universal2 }}
run: |
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
apt-get install -y --no-install-recommends python3 python3-venv software-properties-common
add-apt-repository ppa:deadsnakes/ppa
apt-get update
apt-get install -y curl python{{ matrix.python-version }}-venv
apt-get install -y curl python${{ matrix.python-version }}-venv
run: |
ls -lrth /artifacts
PYTHON=python${{ matrix.python-version }}
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.12"
version = "1.0.13"
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.12"
version = "1.0.13"
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.12"
version = "1.0.13"

[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.12"
version = "1.0.13"
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.12"
version = "1.0.13"

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

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

[dependencies]
longport-proto = { path = "../proto", version = "1.0.12" }
longport-proto = { path = "../proto", version = "1.0.13" }

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

0 comments on commit 103399a

Please sign in to comment.