From 992da7d586f0c4d71b1b1a4cb855d2d1fed2c691 Mon Sep 17 00:00:00 2001 From: InauguralPhysicist Date: Sat, 4 Jul 2026 03:41:58 -0500 Subject: [PATCH] Bump EigenScript pin to v0.26.0 The stdlib-trains release: num-of hex contract, bit_* builtins aligned with the infix operators (int64), and seven new stdlib surfaces (checksum, datetime civil math, bcd, wait_until, hexdump, harness, observer_slots). Local suite verified green on v0.26.0 pre-bump; this repo's bit_* call sites audited (small-value masks, semantics identical). Co-Authored-By: Claude Fable 5 --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 096462f..c29e908 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.25.0 +ARG EIGS_REF=v0.26.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 \