Skip to content

Commit b590289

Browse files
committed
release: v0.1.1-rc.1
1 parent 1071252 commit b590289

24 files changed

Lines changed: 180 additions & 40 deletions

File tree

crates/v8-runtime/npm/darwin-arm64/package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{
22
"name": "@secure-exec/v8-darwin-arm64",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"license": "Apache-2.0",
5-
"os": ["darwin"],
6-
"cpu": ["arm64"],
5+
"os": [
6+
"darwin"
7+
],
8+
"cpu": [
9+
"arm64"
10+
],
711
"main": "install.js",
8-
"files": ["install.js"],
12+
"files": [
13+
"install.js"
14+
],
915
"scripts": {
1016
"postinstall": "node install.js"
1117
},

crates/v8-runtime/npm/darwin-x64/package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{
22
"name": "@secure-exec/v8-darwin-x64",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"license": "Apache-2.0",
5-
"os": ["darwin"],
6-
"cpu": ["x64"],
5+
"os": [
6+
"darwin"
7+
],
8+
"cpu": [
9+
"x64"
10+
],
711
"main": "install.js",
8-
"files": ["install.js"],
12+
"files": [
13+
"install.js"
14+
],
915
"scripts": {
1016
"postinstall": "node install.js"
1117
},

crates/v8-runtime/npm/linux-arm64-gnu/package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{
22
"name": "@secure-exec/v8-linux-arm64-gnu",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"license": "Apache-2.0",
5-
"os": ["linux"],
6-
"cpu": ["arm64"],
5+
"os": [
6+
"linux"
7+
],
8+
"cpu": [
9+
"arm64"
10+
],
711
"main": "install.js",
8-
"files": ["install.js"],
12+
"files": [
13+
"install.js"
14+
],
915
"scripts": {
1016
"postinstall": "node install.js"
1117
},

crates/v8-runtime/npm/linux-x64-gnu/package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{
22
"name": "@secure-exec/v8-linux-x64-gnu",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"license": "Apache-2.0",
5-
"os": ["linux"],
6-
"cpu": ["x64"],
5+
"os": [
6+
"linux"
7+
],
8+
"cpu": [
9+
"x64"
10+
],
711
"main": "secure-exec-v8",
8-
"files": ["secure-exec-v8"],
12+
"files": [
13+
"secure-exec-v8"
14+
],
915
"repository": {
1016
"type": "git",
1117
"url": "https://github.com/rivet-dev/secure-exec.git",

crates/v8-runtime/npm/win32-x64/package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
{
22
"name": "@secure-exec/v8-win32-x64",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"license": "Apache-2.0",
5-
"os": ["win32"],
6-
"cpu": ["x64"],
5+
"os": [
6+
"win32"
7+
],
8+
"cpu": [
9+
"x64"
10+
],
711
"main": "install.js",
8-
"files": ["install.js"],
12+
"files": [
13+
"install.js"
14+
],
915
"scripts": {
1016
"postinstall": "node install.js"
1117
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "secure-exec-monorepo",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"private": true,
55
"license": "Apache-2.0",
66
"type": "module",

packages/kernel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@secure-exec/kernel",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"description": "OS kernel — VFS, FD table, process table, device layer, pipes, command registry, permissions",
55
"type": "module",
66
"main": "src/index.ts",

packages/os/browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@secure-exec/os-browser",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"description": "Browser platform adapter — in-memory/OPFS filesystem and Web Worker abstractions",
55
"type": "module",
66
"main": "src/index.ts",

packages/os/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@secure-exec/os-node",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"description": "Node.js platform adapter — filesystem and worker abstractions",
55
"type": "module",
66
"main": "src/index.ts",

packages/runtime/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@secure-exec/runtime-node",
3-
"version": "0.1.0",
3+
"version": "0.1.1-rc.1",
44
"description": "Node.js runtime driver — wraps secure-exec NodeExecutionDriver behind the kernel RuntimeDriver interface",
55
"type": "module",
66
"main": "src/index.ts",

0 commit comments

Comments
 (0)