Skip to content

Commit

Permalink
chore: Release version 0.1.6 (#9)
Browse files Browse the repository at this point in the history
* fix(ci): Fix macos build error

* fix(ci): Fix musllinux build error

* fix(ci): Fix musllinux build error

* chore: Release 0.1.6
  • Loading branch information
fangyinc authored Dec 20, 2024
1 parent 93df89b commit 5f41d68
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 21 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,17 @@ jobs:
uses: Swatinem/rust-cache@v2
with:
key: musllinux-${{ matrix.platform.target }}

- name: Setup QEMU
uses: docker/setup-qemu-action@v1

- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter --manifest-path bindings/python/lyric-py/Cargo.toml
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
sccache: 'true'
manylinux: musllinux_1_2
manylinux: musllinux_1_1
docker-options: |
-e PROTOC_ARCH=${{ matrix.platform.target }}
-e PROTOC=/usr/local/bin/protoc
Expand Down Expand Up @@ -217,7 +221,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: --release --out dist --find-interpreter --manifest-path bindings/python/lyric-py/Cargo.toml
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
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -250,7 +254,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: aarch64
args: --release --out dist --find-interpreter --manifest-path bindings/python/lyric-py/Cargo.toml
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
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ default-members = [
]

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

lyric = { version = "0.1.5", path = "crates/lyric", default-features = false }
lyric-utils = { version = "0.1.5", path = "crates/lyric-utils", default-features = false }
lyric-rpc = { version = "0.1.5", path = "crates/lyric-rpc", default-features = false }
lyric-wasm-runtime = { version = "0.1.5", path = "crates/lyric-wasm-runtime", default-features = false }
lyric-py = { version = "0.1.5", path = "bindings/python/lyric-py", default-features = false }
lyric = { version = "0.1.6", path = "crates/lyric", default-features = false }
lyric-utils = { version = "0.1.6", path = "crates/lyric-utils", default-features = false }
lyric-rpc = { version = "0.1.6", path = "crates/lyric-rpc", default-features = false }
lyric-wasm-runtime = { version = "0.1.6", path = "crates/lyric-wasm-runtime", default-features = false }
lyric-py = { version = "0.1.6", path = "bindings/python/lyric-py", default-features = false }
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lyric-component-ts-transpiling"
version = "0.1.5"
version = "0.1.6"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/lyric-js-worker/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lyric-js-worker"
version = "0.1.5"
version = "0.1.6"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/lyric-py-worker/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lyric-py-worker"
version = "0.1.5"
version = "0.1.6"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/lyric-task/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lyric-task"
version = "0.1.5"
version = "0.1.6"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "python"
version = "0.1.5"
version = "0.1.6"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" }
Expand Down

0 comments on commit 5f41d68

Please sign in to comment.