Skip to content

Commit 9bdfdc5

Browse files
committed
internal/history: remove draft notice, update deployment, add Go 1.25
This change: Removes the draft notice from go1.25.md Updates the deployment for golangorg to Go 1.25 Adds Go 1.25 to history/release.go For golang/go#71661 Change-Id: I1b74a1a92c47f6044a43ac2dd4609e7a52f11b45 Reviewed-on: https://go-review.googlesource.com/c/website/+/695375 Reviewed-by: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Bypass: David Chase <[email protected]>
1 parent 50d0061 commit 9bdfdc5

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

_content/doc/go1.25.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ template: false
77
main ul li { margin: 0.5em 0; }
88
</style>
99

10-
## DRAFT RELEASE NOTES — Introduction to Go 1.25 {#introduction}
10+
## Introduction to Go 1.25 {#introduction}
1111

12-
**Go 1.25 is not yet released. These are work-in-progress release notes.
13-
Go 1.25 is expected to be released in August 2025.**
12+
The latest Go release, version 1.25, arrives in [August 2025](/doc/devel/release#go1.25.0), six months after [Go 1.24](/doc/go1.24).
13+
Most of its changes are in the implementation of the toolchain, runtime, and libraries.
14+
As always, the release maintains the Go 1 promise of compatibility.
15+
We expect almost all Go programs to continue to compile and run as before.
1416

1517
## Changes to the language {#language}
1618

cmd/golangorg/cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
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.24", "--depth=1", "https://go.googlesource.com/go", "_gotmp"]
8+
args: ["clone", "--branch=release-branch.go1.25", "--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

Lines changed: 3 additions & 0 deletions
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, 8, 12}, Version: Version{1, 25, 0},
18+
},
1619
{
1720
Date: Date{2025, 8, 6}, Version: Version{1, 24, 6},
1821
Security: &FixSummary{

0 commit comments

Comments
 (0)