Skip to content

Commit c75d481

Browse files
authored
Update to v0.3.0 (#29)
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
1 parent be0acc9 commit c75d481

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ exclude = [
1414
resolver = "2"
1515

1616
[workspace.package]
17-
version = "0.2.0"
17+
version = "0.3.0"
1818
edition = "2024"
1919
rust-version = "1.89"
2020
license = "Apache-2.0"

docs/end-user-overview-slides.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ result = sandbox.run('console.log(2 + 3)')
117117

118118
```rust
119119
// JavaScript via QuickJS in a Nanvix microkernel
120-
let mut sandbox = Sandbox::builder().guest(NanvixJavaScript).build()?;
120+
let mut sandbox = SandboxBuilder::new().guest(NanvixJavaScript).build()?;
121121
let result = sandbox.run(r#"console.log("Hello from Nanvix!")"#)?;
122122

123123
// Python via Python in a Nanvix microkernel
124-
let mut sandbox = Sandbox::builder().guest(NanvixPython).build()?;
124+
let mut sandbox = SandboxBuilder::new().guest(NanvixPython).build()?;
125125
let result = sandbox.run(r#"print("Hello from Nanvix!")"#)?;
126126
```
127127

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "hyperlight-sandbox-dev"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
requires-python = ">=3.10"
55

66
[tool.uv]

src/nanvix_sandbox/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlight-nanvix-sandbox"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Nanvix microkernel sandbox backend for hyperlight-sandbox"

src/sdk/python/core/hyperlight_sandbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
try:
1818
__version__ = metadata.version("hyperlight-sandbox")
1919
except metadata.PackageNotFoundError:
20-
__version__ = "0.1.0"
20+
__version__ = "0.3.0"
2121

2222
# Platform-dependent memory defaults: Windows Hyper-V needs larger allocations.
2323
if platform.system() == "Windows":

src/sdk/python/core/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hyperlight-sandbox"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "Python API for running code in isolated Hyperlight sandboxes with swappable backends"
99
readme = "README.md"
1010
license = "Apache-2.0"
1111
requires-python = ">=3.10"
1212
dependencies = []
13-
optional-dependencies = { wasm = ["hyperlight-sandbox-backend-wasm>=0.2.0"], hyperlight_js = ["hyperlight-sandbox-backend-hyperlight-js>=0.2.0"], python_guest = ["hyperlight-sandbox-python-guest>=0.2.0"], javascript_guest = ["hyperlight-sandbox-javascript-guest>=0.2.0"], dev = ["atheris>=2.3.0"] }
13+
optional-dependencies = { wasm = ["hyperlight-sandbox-backend-wasm>=0.3.0"], hyperlight_js = ["hyperlight-sandbox-backend-hyperlight-js>=0.3.0"], python_guest = ["hyperlight-sandbox-python-guest>=0.3.0"], javascript_guest = ["hyperlight-sandbox-javascript-guest>=0.3.0"], dev = ["atheris>=2.3.0"] }
1414
classifiers = [
1515
"Development Status :: 3 - Alpha",
1616
"Intended Audience :: Developers",

src/sdk/python/hyperlight_js_backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "hyperlight-sandbox-backend-hyperlight-js"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "HyperlightJS backend implementation for hyperlight-sandbox"
99
readme = "README.md"
1010
license = "Apache-2.0"

src/sdk/python/wasm_backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "hyperlight-sandbox-backend-wasm"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "Wasm backend implementation for hyperlight-sandbox"
99
readme = "README.md"
1010
license = "Apache-2.0"

src/sdk/python/wasm_guests/javascript_guest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hyperlight-sandbox-javascript-guest"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "Packaged Hyperlight Wasm JavaScript guest exposed as javascript_guest.path"
99
readme = "README.md"
1010
license = "Apache-2.0"

src/sdk/python/wasm_guests/python_guest/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hyperlight-sandbox-python-guest"
7-
version = "0.2.0"
7+
version = "0.3.0"
88
description = "Packaged Hyperlight Wasm Python guest exposed as python_guest.path"
99
readme = "README.md"
1010
license = "Apache-2.0"

0 commit comments

Comments
 (0)