Skip to content

Commit

Permalink
internal/history: remove draft notice, update deployment, add Go 1.23
Browse files Browse the repository at this point in the history
This change:
Removes the draft notice from go1.23.md
Updates the deployment for golangorg to Go 1.23
Adds Go 1.23 to history/release.go

For golang/go#65614

Change-Id: I5afe34461fdb764b8f9759b0b8d894f72532ecf1
Reviewed-on: https://go-review.googlesource.com/c/website/+/605175
Reviewed-by: David Chase <[email protected]>
LUCI-TryBot-Result: Go LUCI <[email protected]>
  • Loading branch information
cagedmantis committed Aug 13, 2024
1 parent b81d4df commit 2cd7468
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 5 additions & 3 deletions _content/doc/go1.23.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ set fixed-width phrases with non-fixed-width spaces, as in
main ul li { margin: 0.5em 0; }
</style>

## DRAFT RELEASE NOTES — Introduction to Go 1.23 {#introduction}
## Introduction to Go 1.23 {#introduction}

**Go 1.23 is not yet released. These are work-in-progress release notes.
Go 1.23 is expected to be released in August 2024.**
The latest Go release, version 1.23, arrives six months after [Go 1.22](/doc/go1.22).
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](/doc/go1compat).
We expect almost all Go programs to continue to compile and run as before.

## Changes to the language {#language}

Expand Down
2 changes: 1 addition & 1 deletion cmd/golangorg/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.22", "--depth=1", "https://go.googlesource.com/go", "_gotmp"]
args: ["clone", "--branch=release-branch.go1.23", "--depth=1", "https://go.googlesource.com/go", "_gotmp"]
- name: gcr.io/cloud-builders/git
args: ["archive", "--format=zip", "--output=../_goroot.zip", "HEAD"]
dir: _gotmp
Expand Down
3 changes: 3 additions & 0 deletions internal/history/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import "html/template"
//
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
Date: Date{2024, 8, 13}, Version: Version{1, 23, 0},
},
{
Date: Date{2024, 8, 6}, Version: Version{1, 22, 6},
Bug: &FixSummary{
Expand Down

0 comments on commit 2cd7468

Please sign in to comment.