Skip to content

Commit 2fbf744

Browse files
committed
internal/history: document Go 1.23.4 and 1.22.10 releases
Change-Id: I619ac089402fbc0b4bc6ffeaed0ebeeb4aeab1bc Reviewed-on: https://go-review.googlesource.com/c/website/+/633195 Reviewed-by: Veronica Silina <veronicasilina@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
1 parent dcde8e0 commit 2fbf744

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

internal/history/release.go

+14
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, 12, 3}, Version: Version{1, 23, 4},
18+
Bug: &FixSummary{
19+
Components: []template.HTML{"the compiler", "the runtime", "the <code>trace</code> command"},
20+
Packages: []string{"syscall"},
21+
},
22+
},
23+
{
24+
Date: Date{2024, 12, 3}, Version: Version{1, 22, 10},
25+
Bug: &FixSummary{
26+
Components: []template.HTML{"the runtime"},
27+
Packages: []string{"syscall"},
28+
},
29+
},
1630
{
1731
Date: Date{2024, 11, 6}, Version: Version{1, 23, 3},
1832
Bug: &FixSummary{

0 commit comments

Comments
 (0)