From 1e6699a360090861c8ad4c9381cda1c8b0746d66 Mon Sep 17 00:00:00 2001 From: kami Date: Sat, 20 Jun 2026 16:07:36 +0000 Subject: [PATCH] fix(tui-go): go.mod directive 1.26 -> 1.24.2 (1.26 toolchain unreleased) `go 1.26` is not a fetchable/released toolchain, so released Go cannot build the module ("toolchain not available"). 1.24.2 is the minimum the deps require (charmbracelet/x/ansi needs >= 1.24.2) and is a real toolchain; the directive is a floor, so newer Go still works. Bump if a specific newer release is intended. Co-Authored-By: Claude Opus 4.8 --- apps/tui-go/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/tui-go/go.mod b/apps/tui-go/go.mod index d1dee92b..b3d89eb2 100644 --- a/apps/tui-go/go.mod +++ b/apps/tui-go/go.mod @@ -1,6 +1,6 @@ module github.com/correx/tui-go -go 1.26 +go 1.24.2 require ( github.com/charmbracelet/bubbletea v1.3.10