Skip to content

Commit fa72e5e

Browse files
committed
internal/history: document Go 1.23.2 and 1.22.8 releases
Change-Id: I9fe0e808ff2ad0a59b4e00f0cae223d9b49f36fe Reviewed-on: https://go-review.googlesource.com/c/website/+/617075 Reviewed-by: David Chase <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 15d7849 commit fa72e5e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

internal/history/release.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ 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{2024, 10, 1}, Version: Version{1, 23, 2},
18+
Bug: &FixSummary{
19+
Components: []template.HTML{"the compiler", "cgo", "the runtime"},
20+
Packages: []string{"maps", "os", "os/exec", "time", "unique"},
21+
},
22+
},
23+
{
24+
Date: Date{2024, 10, 1}, Version: Version{1, 22, 8},
25+
Bug: &FixSummary{
26+
Components: []template.HTML{"cgo"},
27+
Packages: []string{"maps", "syscall"},
28+
},
29+
},
1630
{
1731
Date: Date{2024, 9, 5}, Version: Version{1, 23, 1},
1832
Security: &FixSummary{

0 commit comments

Comments
 (0)