diff options
| author | Junyang Shao <shaojunyang@google.com> | 2026-02-10 17:44:11 +0000 |
|---|---|---|
| committer | Junyang Shao <shaojunyang@google.com> | 2026-02-10 11:12:03 -0800 |
| commit | eb9efb930efa9971d3a9a76f0c06bc7b853f1c30 (patch) | |
| tree | 0c49009314c4c126ab04d482345eaba0f360682d | |
| parent | fb40eb1c0270dd17e04eb05a1f34e0c36219331f (diff) | |
| download | go-x-website-eb9efb930efa9971d3a9a76f0c06bc7b853f1c30.tar.xz | |
internal/history: remove draft notice, update deployment, add Go 1.26
This change:
Removes the draft notice from go1.26.md
Updates the deployment for golangorg to Go 1.26
Adds Go 1.26 to history/release.go
Fixes golang/go#75005.
Change-Id: I3dc8457a3ec0fa2e3909b3592afe29db586db73a
Reviewed-on: https://go-review.googlesource.com/c/website/+/743900
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
| -rw-r--r-- | _content/doc/go1.26.md | 8 | ||||
| -rw-r--r-- | cmd/golangorg/cloudbuild.yaml | 2 | ||||
| -rw-r--r-- | internal/history/release.go | 3 |
3 files changed, 9 insertions, 4 deletions
diff --git a/_content/doc/go1.26.md b/_content/doc/go1.26.md index 37d1a10d..cf0c755a 100644 --- a/_content/doc/go1.26.md +++ b/_content/doc/go1.26.md @@ -6,10 +6,12 @@ title: Go 1.26 Release Notes main ul li { margin: 0.5em 0; } </style> -## DRAFT RELEASE NOTES — Introduction to Go 1.26 {#introduction} +## Introduction to Go 1.26 {#introduction} -**Go 1.26 is not yet released. These are work-in-progress release notes. -Go 1.26 is expected to be released in February 2026.** +The latest Go release, version 1.26, arrives in [February 2026](/doc/devel/release#go1.26.0), six months after [Go 1.25](/doc/go1.25). +Most of its changes are in the implementation of the toolchain, runtime, and libraries. +As always, the release maintains the Go 1 promise of compatibility. +We expect almost all Go programs to continue to compile and run as before. ## Changes to the language {#language} diff --git a/cmd/golangorg/cloudbuild.yaml b/cmd/golangorg/cloudbuild.yaml index d7b156e0..3d85da70 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.25", "--depth=1", "https://go.googlesource.com/go", "_gotmp"] + args: ["clone", "--branch=release-branch.go1.26", "--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 7d03d9b7..7d4cdc7a 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{2026, 2, 10}, Version: Version{1, 26, 0}, + }, + { Date: Date{2026, 2, 4}, Version: Version{1, 25, 7}, Security: &FixSummary{ Components: []template.HTML{"the <code>go</code> command"}, |
