From 634b15ff220cbabc8f9f2eee2ac27067f5f72966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez=20Di=20Antonio?= Date: Sat, 11 Jul 2026 15:26:04 +0200 Subject: [PATCH] chore: bump go directive to 1.25.2 The release and PR workflows install github.com/boyter/scc/v3@latest to report code statistics, and setup-go derives the toolchain from go-version-file: ./go.mod. scc v3.7.0 now requires Go >= 1.25.2, so with the module pinned to go 1.25.0 the install fails: go install github.com/boyter/scc/v3@latest ... requires go >= 1.25.2 (running go 1.25.0; GOTOOLCHAIN=local) Bump the go directive to 1.25.2 so CI provisions a compatible toolchain, and update the README's stated minimum to match. Build, vet, and tests pass. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 48f8757..2afac92 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ sequenceDiagram go get github.com/slashdevops/ratelimiter ``` -Requires Go 1.25 or newer. +Requires Go 1.25.2 or newer. ## Quick start diff --git a/go.mod b/go.mod index da801d4..f611eba 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/slashdevops/ratelimiter -go 1.25.0 +go 1.25.2 require golang.org/x/time v0.15.0