From 559e6ebcdf32467daffc2947c9a9b40ba0a482f5 Mon Sep 17 00:00:00 2001 From: William Storey Date: Tue, 26 May 2026 08:31:11 -0700 Subject: [PATCH 1/2] Update minimum Go version to 1.25 Bump the go directive in go.mod, switch the CI matrix to test 1.25.x and 1.26.x, and update the golangci-lint go target to match. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/go.yml | 2 +- .golangci.yml | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4469ffe..45b08be 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,7 +13,7 @@ jobs: build: strategy: matrix: - go-version: [1.24.x, 1.25.x] + go-version: [1.25.x, 1.26.x] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} name: "Build ${{ matrix.go-version }} test on ${{ matrix.platform }}" diff --git a/.golangci.yml b/.golangci.yml index bea86ac..79d2c07 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -2,7 +2,7 @@ version: "2" run: # This is needed for precious, which may run multiple instances # in parallel - go: "1.24" + go: "1.25" tests: true allow-parallel-runners: true linters: diff --git a/go.mod b/go.mod index 6a197bc..bc60039 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/maxmind/xgb2code -go 1.24 +go 1.25.0 require github.com/stretchr/testify v1.11.1 From 802af198158e3f8de0bf985a678cfa59be37d1c0 Mon Sep 17 00:00:00 2001 From: William Storey Date: Tue, 26 May 2026 08:35:50 -0700 Subject: [PATCH 2/2] Bump copyright year --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 708fdda..1ad324b 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ Please report bugs by filing an issue with our GitHub issue tracker at ## Copyright and License -This software is Copyright (c) 2022 - 2025 by MaxMind, Inc. +This software is Copyright (c) 2022 - 2026 by MaxMind, Inc. This is free software, licensed under the [Apache License, Version 2.0](LICENSE-APACHE) or the [MIT License](LICENSE-MIT),