Skip to content

Commit 5f41d68

Browse files
authored
chore: Release version 0.1.6 (#9)
* fix(ci): Fix macos build error * fix(ci): Fix musllinux build error * fix(ci): Fix musllinux build error * chore: Release 0.1.6
1 parent 93df89b commit 5f41d68

File tree

8 files changed

+25
-21
lines changed

8 files changed

+25
-21
lines changed

.github/workflows/release-python.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,17 @@ jobs:
115115
uses: Swatinem/rust-cache@v2
116116
with:
117117
key: musllinux-${{ matrix.platform.target }}
118+
119+
- name: Setup QEMU
120+
uses: docker/setup-qemu-action@v1
121+
118122
- name: Build wheels
119123
uses: PyO3/maturin-action@v1
120124
with:
121125
target: ${{ matrix.platform.target }}
122-
args: --release --out dist --find-interpreter --manifest-path bindings/python/lyric-py/Cargo.toml
126+
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10' --manifest-path bindings/python/lyric-py/Cargo.toml
123127
sccache: 'true'
124-
manylinux: musllinux_1_2
128+
manylinux: musllinux_1_1
125129
docker-options: |
126130
-e PROTOC_ARCH=${{ matrix.platform.target }}
127131
-e PROTOC=/usr/local/bin/protoc
@@ -217,7 +221,7 @@ jobs:
217221
uses: PyO3/maturin-action@v1
218222
with:
219223
target: x86_64
220-
args: --release --out dist --find-interpreter --manifest-path bindings/python/lyric-py/Cargo.toml
224+
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9 pypy3.10' --manifest-path bindings/python/lyric-py/Cargo.toml
221225
sccache: 'true'
222226
- name: Upload wheels
223227
uses: actions/upload-artifact@v4
@@ -250,7 +254,7 @@ jobs:
250254
uses: PyO3/maturin-action@v1
251255
with:
252256
target: aarch64
253-
args: --release --out dist --find-interpreter --manifest-path bindings/python/lyric-py/Cargo.toml
257+
args: --release --out dist --interpreter '3.8 3.9 3.10 3.11 3.12 3.13 pypy3.9 pypy3.10' --manifest-path bindings/python/lyric-py/Cargo.toml
254258
sccache: 'true'
255259
- name: Upload wheels
256260
uses: actions/upload-artifact@v4

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ default-members = [
1010
]
1111

1212
[workspace.package]
13-
version = "0.1.5"
13+
version = "0.1.6"
1414
authors = ["fangyinc <staneyffer@gmail.com>"]
1515
edition = "2021"
1616
homepage = "https://github.com/fangyinc/lyric"
@@ -62,8 +62,8 @@ hyper = "1.4"
6262
once_cell = "1.19"
6363
wrpc-interface-http = { version = "0.31", default-features = false}
6464

65-
lyric = { version = "0.1.5", path = "crates/lyric", default-features = false }
66-
lyric-utils = { version = "0.1.5", path = "crates/lyric-utils", default-features = false }
67-
lyric-rpc = { version = "0.1.5", path = "crates/lyric-rpc", default-features = false }
68-
lyric-wasm-runtime = { version = "0.1.5", path = "crates/lyric-wasm-runtime", default-features = false }
69-
lyric-py = { version = "0.1.5", path = "bindings/python/lyric-py", default-features = false }
65+
lyric = { version = "0.1.6", path = "crates/lyric", default-features = false }
66+
lyric-utils = { version = "0.1.6", path = "crates/lyric-utils", default-features = false }
67+
lyric-rpc = { version = "0.1.6", path = "crates/lyric-rpc", default-features = false }
68+
lyric-wasm-runtime = { version = "0.1.6", path = "crates/lyric-wasm-runtime", default-features = false }
69+
lyric-py = { version = "0.1.6", path = "bindings/python/lyric-py", default-features = false }

bindings/python/lyric-component-ts-transpiling/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lyric-component-ts-transpiling"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "Add your description here"
55
authors = [
66
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },

bindings/python/lyric-js-worker/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lyric-js-worker"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "Add your description here"
55
authors = [
66
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },

bindings/python/lyric-py-worker/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lyric-py-worker"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "Add your description here"
55
authors = [
66
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },

bindings/python/lyric-task/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lyric-task"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "Add your description here"
55
authors = [
66
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "python"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "Add your description here"
55
authors = [
66
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" }

0 commit comments

Comments
 (0)