From 5cfec193983af7a91779478153b930842dcfcbb1 Mon Sep 17 00:00:00 2001 From: Kristian Larsson Date: Fri, 5 Jun 2026 11:25:23 +0200 Subject: [PATCH] Bump tydb version for unboxing The unboxing work changes the .c & .h output. Bump the interface schema version so older output is treated as stale and rebuilt instead of being reused across the representation change. --- compiler/lib/src/Acton/Syntax.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/lib/src/Acton/Syntax.hs b/compiler/lib/src/Acton/Syntax.hs index fa36ab3e1..bd16389e7 100644 --- a/compiler/lib/src/Acton/Syntax.hs +++ b/compiler/lib/src/Acton/Syntax.hs @@ -25,7 +25,7 @@ import Control.DeepSeq import Prelude hiding((<>)) version :: [Int] -version = [0,22] +version = [0,23] data Module = Module { modname::ModName, imps::[Import], mdoc::Maybe String, mbody::Suite } deriving (Eq,Show,Generic,NFData)