Skip to content

Commit 084ad90

Browse files
dmitshurgopherbot
authored andcommitted
internal/history: document Go 1.21.6 and 1.20.13 releases
Also format a previous entry more consistently. Change-Id: I56e7b99f9b7aff819208f594dabcbb4154c9c803 Reviewed-on: https://go-review.googlesource.com/c/website/+/555035 Reviewed-by: Dmitri Shuralyov <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Matthew Dempsky <[email protected]>
1 parent 813bd0c commit 084ad90

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

internal/history/release.go

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,20 @@ import "html/template"
1414
//
1515
// The table is sorted by date, breaking ties with newer versions first.
1616
var Releases = []*Release{
17+
{
18+
Date: Date{2024, 1, 9}, Version: Version{1, 21, 6},
19+
Bug: &FixSummary{
20+
Components: []template.HTML{"the compiler", "the runtime"},
21+
Packages: []string{"crypto/tls", "maps", "runtime/pprof"},
22+
},
23+
},
24+
{
25+
Date: Date{2024, 1, 9}, Version: Version{1, 20, 13},
26+
Bug: &FixSummary{
27+
Components: []template.HTML{"the runtime"},
28+
Packages: []string{"crypto/tls"},
29+
},
30+
},
1731
{
1832
Date: Date{2023, 12, 5}, Version: Version{1, 21, 5},
1933
Security: &FixSummary{
@@ -32,7 +46,8 @@ var Releases = []*Release{
3246
Packages: []string{"net/http", "path/filepath"},
3347
},
3448
Bug: &FixSummary{
35-
Components: []template.HTML{"the compiler", "the <code>go</code> command"}},
49+
Components: []template.HTML{"the compiler", "the <code>go</code> command"},
50+
},
3651
},
3752
{
3853
Date: Date{2023, 11, 7}, Version: Version{1, 21, 4},

0 commit comments

Comments
 (0)