From 63e098f27720bf9217a40e6012c32997cc6e0228 Mon Sep 17 00:00:00 2001 From: William Storey Date: Tue, 26 May 2026 08:31:51 -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 a420bb6..f28f58c 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 1dd4905..6c1bb6f 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 0cad801..edffecd 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/maxmind/xgbshap -go 1.24 +go 1.25.0 require github.com/stretchr/testify v1.11.1 From 7c3cc64b6227313d53e294de9a63f5a38d1a69a0 Mon Sep 17 00:00:00 2001 From: William Storey Date: Tue, 26 May 2026 08:37:16 -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 6f74a3b..c44fb48 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Please report bugs by filing an issue with our GitHub issue tracker at ## Copyright and License -This software is Copyright (c) 2023 - 2024 by MaxMind, Inc. +This software is Copyright (c) 2023 - 2026 by MaxMind, Inc. Much of the code is ported from the XGBoost project, so it is also Copyright (c) 2017-2023 by XGBoost Contributors.