diff options
| author | Dmitri Shuralyov <dmitshur@golang.org> | 2025-02-11 11:42:19 -0500 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2025-02-11 08:51:41 -0800 |
| commit | cfd5125084bf80900cf6c164f313a77e198941c9 (patch) | |
| tree | 2811813fee7a054fa868e063a3cc3a1fa40dea47 | |
| parent | 3465a9380893fb18c4bd8ea9f743128eed16c244 (diff) | |
| download | go-x-website-cfd5125084bf80900cf6c164f313a77e198941c9.tar.xz | |
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>
| -rw-r--r-- | cmd/golangorg/cloudbuild.yaml | 2 | ||||
| -rw-r--r-- | internal/history/release.go | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/cmd/golangorg/cloudbuild.yaml b/cmd/golangorg/cloudbuild.yaml index 32f9d9c0..b8e7b1e2 100644 --- a/cmd/golangorg/cloudbuild.yaml +++ b/cmd/golangorg/cloudbuild.yaml @@ -5,7 +5,7 @@ steps: # Clone go repo to _goroot.zip for use by uploaded app. - name: gcr.io/cloud-builders/git - args: ["clone", "--branch=release-branch.go1.23", "--depth=1", "https://go.googlesource.com/go", "_gotmp"] + args: ["clone", "--branch=release-branch.go1.24", "--depth=1", "https://go.googlesource.com/go", "_gotmp"] - name: gcr.io/cloud-builders/git args: ["archive", "--format=zip", "--output=../_goroot.zip", "HEAD"] dir: _gotmp diff --git a/internal/history/release.go b/internal/history/release.go index a8712d8b..17743b8d 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -14,6 +14,9 @@ import "html/template" // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ { + Date: Date{2025, 2, 11}, Version: Version{1, 24, 0}, + }, + { Date: Date{2025, 2, 4}, Version: Version{1, 23, 6}, Security: &FixSummary{ Packages: []string{"crypto/elliptic"}, |
