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/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), 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