From fc39272958aa3881c2a84e5e1dd7a6f204ee1f24 Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Mon, 23 Feb 2026 19:26:03 +0100 Subject: [PATCH] Update Go documentation (1.26.0) --- lib/docs/scrapers/go.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/docs/scrapers/go.rb b/lib/docs/scrapers/go.rb index 4f12e3cc98..717aff483f 100644 --- a/lib/docs/scrapers/go.rb +++ b/lib/docs/scrapers/go.rb @@ -1,7 +1,7 @@ module Docs class Go < UrlScraper self.type = 'go' - self.release = '1.25.1' + self.release = '1.26.0' self.base_url = 'https://golang.org/pkg/' self.links = { home: 'https://golang.org/', @@ -10,7 +10,7 @@ class Go < UrlScraper # Run godoc locally, since https://golang.org/pkg/ redirects to https://pkg.go.dev/std with rate limiting / scraping protection. - # podman run --net host --rm -it docker.io/golang:1.25.1 + # podman run --net host --rm -it docker.io/golang:1.26.0 #podman# go install golang.org/x/tools/cmd/godoc@latest #podman# rm -r /usr/local/go/test/ #podman# godoc -http 0.0.0.0:6060 -v @@ -18,8 +18,8 @@ class Go < UrlScraper # or using alpine # podman run --net host --rm -it alpine:latest #podman# apk add curl - #podman# curl -LO https://go.dev/dl/go1.25.1.linux-amd64.tar.gz - #podman# tar xf go1.25.1.linux-amd64.tar.gz + #podman# curl -LO https://go.dev/dl/go1.26.0.linux-amd64.tar.gz + #podman# tar xf go1.26.0.linux-amd64.tar.gz #podman# go/bin/go install golang.org/x/tools/cmd/godoc@latest #podman# /root/go/bin/godoc -http 0.0.0.0:6060 -v