Skip to content

Commit 6e812b4

Browse files
committed
chore: bump 0.0.0-alpha.10
1 parent c3049ae commit 6e812b4

8 files changed

Lines changed: 13 additions & 9 deletions

File tree

examples/container/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# real FUSE backend mounts; `wrangler dev` doesn't, so wsd falls
1414
# back to the userspace shim transparently.
1515

16-
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.9 AS wsd
16+
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.10 AS wsd
1717

1818
FROM debian:stable-slim
1919

examples/think-compare-runtimes/Dockerfile.workspace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# fall back to the userspace shim in local development environments
1212
# that do not expose /dev/fuse.
1313

14-
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.7 AS wsd
14+
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.10 AS wsd
1515

1616
FROM --platform=linux/amd64 node:22-trixie-slim
1717

examples/think/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# (git, npm, vitest, …) see the same files the Workspace RPC
99
# surface reads and writes.
1010

11-
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.9 AS wsd
11+
FROM ghcr.io/cloudflare/workspace-wsd-linux-x64:0.0.0-alpha.10 AS wsd
1212

1313
FROM debian:stable-slim
1414

package-lock.json

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

packages/workspace/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/workspace",
3-
"version": "0.0.0-alpha.9",
3+
"version": "0.0.0-alpha.10",
44
"description": "Cloudflare Workspace — a SQLite-backed virtual filesystem with sync to a container-side daemon (wsd).",
55
"license": "MIT",
66
"repository": {

packages/wsd-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/workspace-wsd-linux-x64",
3-
"version": "0.0.0-alpha.9",
3+
"version": "0.0.0-alpha.10",
44
"description": "Prebuilt wsd binary for linux-x64. Single-platform distribution; install on a linux-x64 host or COPY --from a docker build stage that installed it.",
55
"license": "MIT",
66
"os": [

packages/wsd/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/workspace-wsd",
3-
"version": "0.0.0-alpha.9",
3+
"version": "0.0.0-alpha.10",
44
"description": "Workspace daemon CLI and FUSE mount. Source-only; the distributable lives at @cloudflare/workspace-wsd-linux-x64.",
55
"license": "MIT",
66
"private": true,

script/set-versions.mjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ const PACKAGES = [
2626
// first FROM line. Bump it in lockstep with the npm version so a
2727
// `git clone && wrangler dev` against any release tag pulls the
2828
// matching wsd image.
29-
const DOCKERFILES = ["examples/think/Dockerfile", "examples/container/Dockerfile"];
29+
const DOCKERFILES = [
30+
"examples/container/Dockerfile",
31+
"examples/think/Dockerfile",
32+
"examples/think-compare-runtimes/Dockerfile.workspace",
33+
];
3034
const WSD_IMAGE_TAG_RE = /(ghcr\.io\/cloudflare\/workspace-wsd-linux-x64:)[^\s]+/g;
3135

3236
const raw = argv[2];

0 commit comments

Comments
 (0)