From 52edf522454f2a47825e97514676cfafef8b25ff Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Thu, 8 Jan 2026 14:38:45 -0800 Subject: [PATCH] builder: claim we support 1.26 now --- builder/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/config.go b/builder/config.go index bef366f8c..736fa08ec 100644 --- a/builder/config.go +++ b/builder/config.go @@ -26,7 +26,7 @@ func NewConfig(options *compileopts.Options) (*compileopts.Config, error) { // Version range supported by TinyGo. const minorMin = 19 - const minorMax = 25 + const minorMax = 26 // Check that we support this Go toolchain version. gorootMajor, gorootMinor, err := goenv.GetGorootVersion()