Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ci): Release v0.1.5 #5

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
207 changes: 100 additions & 107 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 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.4"
version = "0.1.5"
authors = ["fangyinc <[email protected]>"]
edition = "2021"
homepage = "https://github.com/fangyinc/lyric"
Expand All @@ -26,9 +26,9 @@ chrono = "0.4.38"
tonic = {version = "0.12.3", default-features = false}
prost = "0.13"
rmp-serde = "1.3.0"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-appender = "0.2.3"
tracing = "0.1.4"
tracing-subscriber = "0.3"
tracing-appender = "0.2"
lazy_static = "1.5.0"
serde = { version = "1.0.209", features = ["derive"] }
rand = { version = "0.8.5"}
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.4", path = "crates/lyric", default-features = false }
lyric-utils = { version = "0.1.4", path = "crates/lyric-utils", default-features = false }
lyric-rpc = { version = "0.1.4", path = "crates/lyric-rpc", default-features = false }
lyric-wasm-runtime = { version = "0.1.4", path = "crates/lyric-wasm-runtime", default-features = false }
lyric-py = { version = "0.1.4", path = "bindings/python/lyric-py", 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 }
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,25 @@ A Rust-powered secure sandbox for multi-language code execution, leveraging WebA
**Install Lyric via pip:**

```bash
pip install "lyric-py>=0.1.4"
pip install "lyric-py>=0.1.5"
```

**Install default Python webassembly worker:**

```bash
pip install "lyric-py-worker>=0.1.4"
pip install "lyric-py-worker>=0.1.5"
```

**Install default JavaScript webassembly worker:**

```bash
pip install "lyric-js-worker>=0.1.4"
pip install "lyric-js-worker>=0.1.5"
```

**Optional: Install TypeScript transpiling component:**

```bash
pip install "lyric-component-ts-transpiling>=0.1.5"
```

### Basic Usage
Expand Down
14 changes: 9 additions & 5 deletions bindings/python/lyric-component-ts-transpiling/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "lyric-component-ts-transpiling"
version = "0.1.0"
version = "0.1.5"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "[email protected]" }
{ name = "Fangyin Cheng", email = "[email protected]" },
]
dependencies = [
"lyric-task",
Expand All @@ -12,7 +12,9 @@ readme = "README.md"
requires-python = ">= 3.10"

[build-system]
requires = ["hatchling"]
requires = [
"hatchling",
]
build-backend = "hatchling.build"

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

[tool.hatch.build.targets.wheel]
packages = ["src/lyric_component_ts_transpiling"]
packages = [
"src/lyric_component_ts_transpiling",
]
include = [
"src/lyric_component_ts_transpiling/*.wasm",
]
]
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.4"
version = "0.1.5"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "[email protected]" },
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.4"
version = "0.1.5"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "[email protected]" },
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.4"
version = "0.1.5"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "[email protected]" },
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.4"
version = "0.1.5"
description = "Add your description here"
authors = [
{ name = "Fangyin Cheng", email = "[email protected]" }
Expand Down
Loading