@@ -14,6 +14,20 @@ import "html/template"
14
14
//
15
15
// The table is sorted by date, breaking ties with newer versions first.
16
16
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
+ },
17
31
{
18
32
Date : Date {2023 , 12 , 5 }, Version : Version {1 , 21 , 5 },
19
33
Security : & FixSummary {
@@ -32,7 +46,8 @@ var Releases = []*Release{
32
46
Packages : []string {"net/http" , "path/filepath" },
33
47
},
34
48
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
+ },
36
51
},
37
52
{
38
53
Date : Date {2023 , 11 , 7 }, Version : Version {1 , 21 , 4 },
0 commit comments