From f43f6e1c1b5afe3b31f441194a04315e72c15b5a Mon Sep 17 00:00:00 2001 From: InauguralPhysicist Date: Fri, 24 Jul 2026 23:45:24 -0500 Subject: [PATCH] Bump EigenScript pin v0.32.0 -> v0.33.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v0.33.0 is the silent-wrong-answer release: the plausible-but-wrong-at-rc=0 sweep (regex_match #629, json_decode #628, four stdlib math bugs #638-#641, import top-level scope #673, the listcomp/local double binding #633/#642, report_value #674), plus DEFLATE codecs (#684), clock_unix (#683), four C-backed list ops (#543/#544), and kill -USR1 observer dumps (#660). This repo's suite was run locally against the v0.33.0 runtime BEFORE this bump and passed unchanged — no code change needed here. (The same sweep did find real breakage in ouroboros, iLambdaAi and EigenRegex, fixed in their own PRs: EigenScript #630 widened OP_LINE's operand, which is a bytecode ABI break for external producers, and #629 changed regex_match's shape for non-participating groups.) Co-Authored-By: Claude Opus 5 (1M context) --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c9ec399..32c1fdb 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -21,7 +21,7 @@ RUN apt-get update \ # Build + install EigenScript at the pinned tag onto /usr/local (binary on # PATH, stdlib at /usr/local/lib/eigenscript — found relative to the binary). -ARG EIGS_REF=v0.32.0 +ARG EIGS_REF=v0.33.0 RUN git clone --depth 1 --branch "${EIGS_REF}" \ https://github.com/InauguralSystems/EigenScript.git /tmp/eigs \ && make -C /tmp/eigs install PREFIX=/usr/local CC=gcc \