From 9fc787971d9163122ec69838c1e4f5b3f5dc3a64 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Mon, 9 Oct 2023 14:06:12 -0400 Subject: [PATCH] internal/history: document future Go 1.21.3 and 1.20.10 releases Change-Id: I88ba2892c8a0e953f0179dbd59eae9f43d1ecbce Reviewed-on: https://go-review.googlesource.com/c/website/+/533955 Auto-Submit: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov LUCI-TryBot-Result: Go LUCI Reviewed-by: Michael Pratt --- internal/history/release.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/internal/history/release.go b/internal/history/release.go index a3a649d9d4..5375ed73c8 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -14,6 +14,16 @@ import "html/template" // // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ + { + Date: Date{2023, 10, 10}, Version: Version{1, 21, 3}, + Future: true, + Security: &FixSummary{Quantifier: "a", Components: []template.HTML{"the standard library"}}, + }, + { + Date: Date{2023, 10, 10}, Version: Version{1, 20, 10}, + Future: true, + Security: &FixSummary{Quantifier: "a", Components: []template.HTML{"the standard library"}}, + }, { Date: Date{2023, 10, 5}, Version: Version{1, 21, 2}, Security: &FixSummary{Quantifier: "one", Packages: []string{"cmd/go"}},