commit 70855804b673e4c2715a190755164cbb71fb1fee
parent f9884d4e2b3aabf4c749f28f62f4731751e88b69
Author: Jack Mordaunt <jackmordaunt.dev@gmail.com>
Date: Fri, 18 Sep 2026 16:09:34 -0400
all: require Go 1.27
The modules had drifted to three different floors, and the oldest held the
repo on dependency versions months behind. One floor across the workspace is
also what the command modules need, since neither can declare less than the
library it imports.
Diffstat:
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/cmd/preview/go.mod b/cmd/preview/go.mod
@@ -1,6 +1,6 @@
module github.com/jackmordaunt/icns/cmd/preview
-go 1.24.0
+go 1.27.0
require (
gioui.org v0.10.2
diff --git a/cmd/shell-extension/go.mod b/cmd/shell-extension/go.mod
@@ -1,6 +1,6 @@
module github.com/jackmordaunt/icns/cmd/shell-extension
-go 1.23.0
+go 1.27.0
require (
github.com/jackmordaunt/icns/v4 v4.0.0
diff --git a/go.mod b/go.mod
@@ -1,5 +1,5 @@
module github.com/jackmordaunt/icns/v4
-go 1.23.0
+go 1.27.0
require golang.org/x/image v0.30.0
diff --git a/go.work b/go.work
@@ -1,4 +1,4 @@
-go 1.24.0
+go 1.27.0
use (
.