Skip to content

Commit 03e8b89

Browse files
authored
chore(ci): Release v0.1.5 (#5)
1 parent 509a493 commit 03e8b89

File tree

8 files changed

+131
-128
lines changed

8 files changed

+131
-128
lines changed

Cargo.lock

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

Cargo.toml

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

1212
[workspace.package]
13-
version = "0.1.4"
13+
version = "0.1.5"
1414
authors = ["fangyinc <staneyffer@gmail.com>"]
1515
edition = "2021"
1616
homepage = "https://github.com/fangyinc/lyric"
@@ -26,9 +26,9 @@ chrono = "0.4.38"
2626
tonic = {version = "0.12.3", default-features = false}
2727
prost = "0.13"
2828
rmp-serde = "1.3.0"
29-
tracing = "0.1.40"
30-
tracing-subscriber = "0.3.18"
31-
tracing-appender = "0.2.3"
29+
tracing = "0.1.4"
30+
tracing-subscriber = "0.3"
31+
tracing-appender = "0.2"
3232
lazy_static = "1.5.0"
3333
serde = { version = "1.0.209", features = ["derive"] }
3434
rand = { version = "0.8.5"}
@@ -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.4", path = "crates/lyric", default-features = false }
66-
lyric-utils = { version = "0.1.4", path = "crates/lyric-utils", default-features = false }
67-
lyric-rpc = { version = "0.1.4", path = "crates/lyric-rpc", default-features = false }
68-
lyric-wasm-runtime = { version = "0.1.4", path = "crates/lyric-wasm-runtime", default-features = false }
69-
lyric-py = { version = "0.1.4", path = "bindings/python/lyric-py", default-features = false }
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 }

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,25 @@ A Rust-powered secure sandbox for multi-language code execution, leveraging WebA
2121
**Install Lyric via pip:**
2222

2323
```bash
24-
pip install "lyric-py>=0.1.4"
24+
pip install "lyric-py>=0.1.5"
2525
```
2626

2727
**Install default Python webassembly worker:**
2828

2929
```bash
30-
pip install "lyric-py-worker>=0.1.4"
30+
pip install "lyric-py-worker>=0.1.5"
3131
```
3232

3333
**Install default JavaScript webassembly worker:**
3434

3535
```bash
36-
pip install "lyric-js-worker>=0.1.4"
36+
pip install "lyric-js-worker>=0.1.5"
37+
```
38+
39+
**Optional: Install TypeScript transpiling component:**
40+
41+
```bash
42+
pip install "lyric-component-ts-transpiling>=0.1.5"
3743
```
3844

3945
### Basic Usage
Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
22
name = "lyric-component-ts-transpiling"
3-
version = "0.1.0"
3+
version = "0.1.5"
44
description = "Add your description here"
55
authors = [
6-
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" }
6+
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" },
77
]
88
dependencies = [
99
"lyric-task",
@@ -12,7 +12,9 @@ readme = "README.md"
1212
requires-python = ">= 3.10"
1313

1414
[build-system]
15-
requires = ["hatchling"]
15+
requires = [
16+
"hatchling",
17+
]
1618
build-backend = "hatchling.build"
1719

1820
[tool.rye]
@@ -23,7 +25,9 @@ dev-dependencies = []
2325
allow-direct-references = true
2426

2527
[tool.hatch.build.targets.wheel]
26-
packages = ["src/lyric_component_ts_transpiling"]
28+
packages = [
29+
"src/lyric_component_ts_transpiling",
30+
]
2731
include = [
2832
"src/lyric_component_ts_transpiling/*.wasm",
29-
]
33+
]

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.4"
3+
version = "0.1.5"
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.4"
3+
version = "0.1.5"
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.4"
3+
version = "0.1.5"
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.4"
3+
version = "0.1.5"
44
description = "Add your description here"
55
authors = [
66
{ name = "Fangyin Cheng", email = "staneyffer@gmail.com" }

0 commit comments

Comments
 (0)