aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorMichael Anthony Knyszek <mknyszek@google.com>2024-12-03 17:13:55 +0000
committerMichael Knyszek <mknyszek@google.com>2024-12-03 18:57:00 +0000
commit2fbf744cdc6bb53068b4c7dc84b39413d4e11148 (patch)
tree9e89b31ab67e4c1c7fe01155d5d487a2547700bd /internal
parentdcde8e07817c26d6818e802f4055b3d2b5f95e00 (diff)
downloadgo-x-website-2fbf744cdc6bb53068b4c7dc84b39413d4e11148.tar.xz
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>
Diffstat (limited to 'internal')
-rw-r--r--internal/history/release.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go
index d62f91e4..1c171d6b 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -14,6 +14,20 @@ import "html/template"
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
+ Date: Date{2024, 12, 3}, Version: Version{1, 23, 4},
+ Bug: &FixSummary{
+ Components: []template.HTML{"the compiler", "the runtime", "the <code>trace</code> command"},
+ Packages: []string{"syscall"},
+ },
+ },
+ {
+ Date: Date{2024, 12, 3}, Version: Version{1, 22, 10},
+ Bug: &FixSummary{
+ Components: []template.HTML{"the runtime"},
+ Packages: []string{"syscall"},
+ },
+ },
+ {
Date: Date{2024, 11, 6}, Version: Version{1, 23, 3},
Bug: &FixSummary{
Components: []template.HTML{"the linker", "the runtime"},