Skip to content

Commit 9dd6e0b

Browse files
authored
Prepare for 0.4.0 release (#70)
Signed-off-by: James Sturtevant <jsturtevant@gmail.com>
1 parent 3c59041 commit 9dd6e0b

11 files changed

Lines changed: 28 additions & 28 deletions

File tree

Cargo.toml

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

1717
[workspace.package]
18-
version = "0.3.0"
18+
version = "0.4.0"
1919
edition = "2024"
2020
rust-version = "1.89"
2121
license = "Apache-2.0"

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.3.0"
3+
version = "0.4.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.3.0"
3+
version = "0.4.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Nanvix microkernel sandbox backend for hyperlight-sandbox"

src/sdk/dotnet/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.3.0</Version>
3+
<Version>0.4.0</Version>
44
<Authors>Hyperlight developers</Authors>
55
<Company>hyperlight-dev</Company>
66
<Copyright>Copyright © Microsoft 2026</Copyright>

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.3.0"
7+
version = "0.4.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.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"] }
13+
optional-dependencies = { wasm = ["hyperlight-sandbox-backend-wasm>=0.4.0"], hyperlight_js = ["hyperlight-sandbox-backend-hyperlight-js>=0.4.0"], python_guest = ["hyperlight-sandbox-python-guest>=0.4.0"], javascript_guest = ["hyperlight-sandbox-javascript-guest>=0.4.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.3.0"
7+
version = "0.4.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.3.0"
7+
version = "0.4.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.3.0"
7+
version = "0.4.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.3.0"
7+
version = "0.4.0"
88
description = "Packaged Hyperlight Wasm Python guest exposed as python_guest.path"
99
readme = "README.md"
1010
license = "Apache-2.0"

src/wasm_sandbox/guests/javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperlight-sandbox-js-guest",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"private": true,
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)