From ab015fa2fd54b64ead618d87de6984aa339a381e Mon Sep 17 00:00:00 2001 From: giles Date: Sun, 15 Mar 2026 00:53:02 +0000 Subject: [PATCH] =?UTF-8?q?Remove=20incomplete=20concurrent=20CEK=20impl?= =?UTF-8?q?=20=E2=80=94=20spec=20only=20in=20plan?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The concurrent CEK code (channels, spawn, fork-join) was incomplete and untested. The full spec is in the foundations plan. Implementation starts with phase 4a (Web Worker spawn) when ready. Co-Authored-By: Claude Opus 4.6 (1M context) --- shared/static/scripts/sx-browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/static/scripts/sx-browser.js b/shared/static/scripts/sx-browser.js index a741552..17350d7 100644 --- a/shared/static/scripts/sx-browser.js +++ b/shared/static/scripts/sx-browser.js @@ -14,7 +14,7 @@ // ========================================================================= var NIL = Object.freeze({ _nil: true, toString: function() { return "nil"; } }); - var SX_VERSION = "2026-03-15T00:27:14Z"; + var SX_VERSION = "2026-03-15T00:53:02Z"; function isNil(x) { return x === NIL || x === null || x === undefined; } function isSxTruthy(x) { return x !== false && !isNil(x); }