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 <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>
diff --git a/internal/history/release.go b/internal/history/release.go
index 13527b6..49af6b4 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -15,6 +15,20 @@
 // 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{
 			Components: []template.HTML{"the <code>go</code> command"},
@@ -32,7 +46,8 @@
 			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},