Skip to content

Commit cfd5125

Browse files
dmitshurgopherbot
authored andcommitted
cmd/golangorg, internal/history: update for Go 1.24.0 release
Start using the GOROOT content from release-branch.go1.24, and add an entry for the Go 1.24.0 release to the release history. Removing the draft notice from the release notes is done in CL 647797. For golang/go#68545. Change-Id: Ib30082d4dcc0afaadcf22ba07e5e5f7e3f4761bc Reviewed-on: https://go-review.googlesource.com/c/website/+/648498 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
1 parent 3465a93 commit cfd5125

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

cmd/golangorg/cloudbuild.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
steps:
66
# Clone go repo to _goroot.zip for use by uploaded app.
77
- name: gcr.io/cloud-builders/git
8-
args: ["clone", "--branch=release-branch.go1.23", "--depth=1", "https://go.googlesource.com/go", "_gotmp"]
8+
args: ["clone", "--branch=release-branch.go1.24", "--depth=1", "https://go.googlesource.com/go", "_gotmp"]
99
- name: gcr.io/cloud-builders/git
1010
args: ["archive", "--format=zip", "--output=../_goroot.zip", "HEAD"]
1111
dir: _gotmp

internal/history/release.go

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ import "html/template"
1313
//
1414
// The table is sorted by date, breaking ties with newer versions first.
1515
var Releases = []*Release{
16+
{
17+
Date: Date{2025, 2, 11}, Version: Version{1, 24, 0},
18+
},
1619
{
1720
Date: Date{2025, 2, 4}, Version: Version{1, 23, 6},
1821
Security: &FixSummary{

0 commit comments

Comments
 (0)