Skip to content

Commit eb076cb

Browse files
dmitshurgopherbot
authored andcommitted
internal/history: document future Go 1.20.4 and 1.19.9 releases
Change-Id: I5fc471002322935129de27c4ec8407defccb26ff Reviewed-on: https://go-review.googlesource.com/c/website/+/490375 Run-TryBot: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
1 parent 9a3b575 commit eb076cb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

internal/history/release.go

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,24 @@ 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{2023, 5, 2}, Version: Version{1, 20, 4},
19+
Future: true,
20+
Security: &FixSummary{Components: []template.HTML{"the standard library"}},
21+
Bug: &FixSummary{
22+
Components: []template.HTML{"the compiler", "the runtime"},
23+
Packages: []string{"crypto/subtle", "crypto/tls", "net/http", "syscall"},
24+
},
25+
},
26+
{
27+
Date: Date{2023, 5, 2}, Version: Version{1, 19, 9},
28+
Future: true,
29+
Security: &FixSummary{Components: []template.HTML{"the standard library"}},
30+
Bug: &FixSummary{
31+
Components: []template.HTML{"the compiler", "the runtime"},
32+
Packages: []string{"crypto/tls", "syscall"},
33+
},
34+
},
1735
{
1836
Date: Date{2023, 4, 4}, Version: Version{1, 20, 3},
1937
Security: &FixSummary{Packages: []string{"go/parser", "html/template", "mime/multipart", "net/http", "net/textproto"}},

0 commit comments

Comments
 (0)