diff --git a/src/docs/releaseNotes/v1.2.1.md b/src/docs/releaseNotes/v1.2.1.md
new file mode 100644
index 0000000..fd55366
--- /dev/null
+++ b/src/docs/releaseNotes/v1.2.1.md
@@ -0,0 +1,10 @@
+# v1.2.1
+
+## Minor Changes
+
+- Changed the way maps are stored and sent to other players which should fix a few of the issues with maps not sending properly.
+- Added relay servers to use as a fallback for when players aren't able to create a direct connection, this should fix most issues with connection failures.
+- Fixed a bug that would stop users from uploading custom maps when web storage was disabled (this mainly happened with Firefox in Private Mode).
+- Added a new release notes page on the site which shows all the release notes in one place.
+
+[Reddit](https://www.reddit.com/r/OwlbearRodeo/comments/ggyiz8/beta_v121_release_connection_issues_and_map/)
diff --git a/src/routes/ReleaseNotes.js b/src/routes/ReleaseNotes.js
index 095f472..1bd12ab 100644
--- a/src/routes/ReleaseNotes.js
+++ b/src/routes/ReleaseNotes.js
@@ -7,6 +7,7 @@ import Markdown from "../components/Markdown";
const v110 = raw("../docs/releaseNotes/v1.1.0.md");
const v120 = raw("../docs/releaseNotes/v1.2.0.md");
+const v121 = raw("../docs/releaseNotes/v1.2.1.md");
function ReleaseNotes() {
return (
@@ -29,6 +30,9 @@ function ReleaseNotes() {