Commit b0c45cf0 for codemirror.net

commit b0c45cf0fbd3dc7cb2016a79fb81c723827f4e31
Author: Marijn Haverbeke <marijn@haverbeke.berlin>
Date:   Sun Aug 10 10:30:49 2025 +0200

    Mark version 5.65.20

diff --git a/AUTHORS b/AUTHORS
index b2635967..c800afe9 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -978,6 +978,7 @@ Yuvi Panda
 Yvonnick Esnault
 Zac Anger
 Zachary Dremann
+Zaid Daba'een
 ZeeshanNoor
 Zeno Rocha
 Zhang Hao
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee12d024..8a7064be 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## 5.65.20 (2025-08-10)
+
+### Bug fixes
+
+[show-hint addon](https://codemirror.net/5/doc/manual.html#addon_show-hint): Fix a positioning issue when the tooltip is at the bottom of the screen.
+
+[gas mode](https://codemirror.net/5/mode/gas/index.html): Properly define the MIME type the mode's demo page mentions.
+
 ## 5.65.19 (2025-03-20)

 ### Bug fixes
diff --git a/doc/manual.html b/doc/manual.html
index 957a8f2f..3ea659e9 100644
--- a/doc/manual.html
+++ b/doc/manual.html
@@ -70,7 +70,7 @@
 <section class=first id=overview>
     <h2 style="position: relative">
       User manual and reference guide
-      <span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.19</span>
+      <span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.20</span>
     </h2>

     <p>CodeMirror is a code-editor component that can be embedded in
diff --git a/doc/releases.html b/doc/releases.html
index 42292438..42227c73 100644
--- a/doc/releases.html
+++ b/doc/releases.html
@@ -34,6 +34,13 @@

   <h2>Version 5.x</h2>

+  <p class="rel">10-08-2025: <a href="https://codemirror.net/5/codemirror-5.65.20.zip">Version 5.65.20</a>:</p>
+
+  <ul class="rel-note">
+    <li><a href="https://codemirror.net/5/doc/manual.html#addon_show-hint">show-hint addon</a>: Fix a positioning issue when the tooltip is at the bottom of the screen.
+    <li><a href="https://codemirror.net/5/mode/gas/index.html">gas mode</a>: Properly define the MIME type the mode's demo page mentions.
+  </ul>
+
   <p class="rel">20-03-2025: <a href="https://codemirror.net/5/codemirror-5.65.19.zip">Version 5.65.19</a>:</p>

   <ul class="rel-note">
diff --git a/index.html b/index.html
index 9190bf20..7cc603cc 100644
--- a/index.html
+++ b/index.html
@@ -92,7 +92,7 @@
   </script>

   <div class=actions>
-    Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.19</a>.<br>
+    Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.20</a>.<br>
     You can see the <a href="https://github.com/codemirror/codemirror5" title="GitHub repository">code</a>,<br>
     read the <a href="doc/releases.html">release notes</a>,<br>
     or study the <a href="doc/manual.html">user manual</a>.
diff --git a/package.json b/package.json
index 62736312..330bfeb3 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "codemirror",
-  "version": "5.65.19",
+  "version": "5.65.20",
   "main": "lib/codemirror.js",
   "style": "lib/codemirror.css",
   "author": {
diff --git a/src/edit/main.js b/src/edit/main.js
index a2750745..949d9d40 100644
--- a/src/edit/main.js
+++ b/src/edit/main.js
@@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"

 addLegacyProps(CodeMirror)

-CodeMirror.version = "5.65.19"
+CodeMirror.version = "5.65.20"