Skip to content

Commit

Permalink
internal/history: document Go 1.21.6 and 1.20.13 releases
Browse files Browse the repository at this point in the history
Also format a previous entry more consistently.

Change-Id: I56e7b99f9b7aff819208f594dabcbb4154c9c803
Reviewed-on: https://go-review.googlesource.com/c/website/+/555035
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
  • Loading branch information
dmitshur authored and gopherbot committed Jan 9, 2024
1 parent 813bd0c commit 084ad90
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion internal/history/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -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, 1, 9}, Version: Version{1, 21, 6},
Bug: &FixSummary{
Components: []template.HTML{"the compiler", "the runtime"},
Packages: []string{"crypto/tls", "maps", "runtime/pprof"},
},
},
{
Date: Date{2024, 1, 9}, Version: Version{1, 20, 13},
Bug: &FixSummary{
Components: []template.HTML{"the runtime"},
Packages: []string{"crypto/tls"},
},
},
{
Date: Date{2023, 12, 5}, Version: Version{1, 21, 5},
Security: &FixSummary{
Expand All @@ -32,7 +46,8 @@ var Releases = []*Release{
Packages: []string{"net/http", "path/filepath"},
},
Bug: &FixSummary{
Components: []template.HTML{"the compiler", "the <code>go</code> command"}},
Components: []template.HTML{"the compiler", "the <code>go</code> command"},
},
},
{
Date: Date{2023, 11, 7}, Version: Version{1, 21, 4},
Expand Down

0 comments on commit 084ad90

Please sign in to comment.