Skip to content

Commit d4dbc4b

Browse files
authored
Bump SDK patch versions (#471)
1 parent e2dad50 commit d4dbc4b

9 files changed

Lines changed: 555 additions & 294 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ exclude = ["build/tmp", "target", ".venv", "examples/*/.venv"]
1818
resolver = "2"
1919

2020
[workspace.dependencies]
21-
boxlite = { path = "src/boxlite", version = "0.9.0" }
21+
boxlite = { path = "src/boxlite", version = "0.9.1" }
2222
boxlite-shared = { path = "src/shared", version = "0.9.0" }
2323
bubblewrap-sys = { path = "src/deps/bubblewrap-sys", version = "0.9.0" }
2424
e2fsprogs-sys = { path = "src/deps/e2fsprogs-sys", version = "0.9.0" }
2525
libgvproxy-sys = { path = "src/deps/libgvproxy-sys", version = "0.9.0" }
2626
libkrun-sys = { path = "src/deps/libkrun-sys", version = "0.9.0" }
2727

2828
[workspace.package]
29-
version = "0.9.0"
29+
version = "0.9.1"
3030
edition = "2024"
3131
authors = ["Dorian Zheng <https://github.com/dorianzheng>"]
3232
license = "Apache-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ main();
9999
### Install
100100

101101
```bash
102-
cargo add boxlite
102+
cargo add boxlite tokio futures --features tokio/macros,tokio/rt-multi-thread
103103
```
104104

105105
### Run

docs/getting-started/quickstart-rust.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ Get up and running with BoxLite Rust crate in 5 minutes.
99
Add BoxLite to your project:
1010

1111
```bash
12-
cargo add boxlite tokio --features tokio/full
13-
cargo add futures
12+
cargo add boxlite tokio futures --features tokio/macros,tokio/rt-multi-thread
1413
```
1514

1615
## Basic Execution
@@ -31,7 +30,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
3130
rootfs: RootfsSpec::Image("alpine:latest".into()),
3231
..Default::default()
3332
};
34-
let (_, litebox) = runtime.create(options)?;
33+
let litebox = runtime.create(options, None).await?;
3534

3635
// Execute command
3736
let mut execution = litebox

sdks/node/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Embeddable VM runtime for secure, isolated code execution environments.
2424
## Installation
2525

2626
```bash
27-
npm install boxlite
27+
npm install @boxlite-ai/boxlite
2828
```
2929

3030
**Requirements:**
@@ -337,15 +337,15 @@ See [../../examples/node/](../../examples/node/) directory for complete examples
337337

338338
```bash
339339
# If installed via npm
340-
npm install boxlite
340+
npm install @boxlite-ai/boxlite
341341
node simplebox.js
342342

343343
# If working from source
344344
cd ../../sdks/node
345345
npm install && npm run build
346346
npm link
347347
cd ../../examples/node
348-
npm link boxlite
348+
npm link @boxlite-ai/boxlite
349349
node simplebox.js
350350
```
351351

@@ -385,7 +385,7 @@ npm run build
385385
# Link to examples
386386
npm link
387387
cd ../../examples/node
388-
npm link boxlite
388+
npm link @boxlite-ai/boxlite
389389

390390
# Run examples
391391
node simplebox.js

sdks/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@boxlite-ai/boxlite",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"description": "BoxLite - Embeddable micro-VM runtime for secure, isolated code execution",
55
"type": "module",
66
"main": "dist/index.js",

sdks/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 = "boxlite"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
description = "Python bindings for Boxlite runtime"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)