Commit 8a5dcbb8 for codemirror.net

commit 8a5dcbb838e06fa01cba4d0b74d988ab66821c33
Author: Marijn Haverbeke <marijn@haverbeke.berlin>
Date:   Thu Mar 20 17:27:04 2025 +0100

    Mark version 5.65.19

diff --git a/AUTHORS b/AUTHORS
index db9c3671..b2635967 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -697,6 +697,7 @@ Nils Knappmeier
 Nina Pypchenko
 Nisarg Jhaveri
 nlwillia
+noor.masarwa
 noragrossman
 Norman Rzepka
 Nouzbe
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 665ec140..ee12d024 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+## 5.65.19 (2025-03-20)
+
+### Bug fixes
+
+[gherkin mode](https://codemirror.net/5/mode/gherkin/index.html): Add support for Rule Example keywords
+
+[pascal mode](https://codemirror.net/5/mode/pascal/index.html) Make keywords case-insensitive
+
+[sql mode](https://codemirror.net/5/mode/sql/) Support quoted identifier for PostgreSQL
+
 ## 5.65.18 (2024-09-20)

 ### Bug fixes
diff --git a/doc/manual.html b/doc/manual.html
index ae992b3e..957a8f2f 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.18</span>
+      <span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.19</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 de5d6f0b..42292438 100644
--- a/doc/releases.html
+++ b/doc/releases.html
@@ -34,6 +34,14 @@

   <h2>Version 5.x</h2>

+  <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">
+    <li><a href="https://codemirror.net/5/mode/gherkin/index.html">gherkin mode</a>: Add support for Rule Example keywords</li>
+    <li><a href="https://codemirror.net/5/mode/pascal/index.html">pascal mode</a> Make keywords case-insensitive</li>
+    <li><a href="https://codemirror.net/5/mode/sql/">sql mode</a> Support quoted identifier for PostgreSQL</li>
+  </ul>
+
   <p class="rel">20-09-2024: <a href="https://codemirror.net/5/codemirror-5.65.18.zip">Version 5.65.18</a>:</p>

   <ul class="rel-note">
diff --git a/index.html b/index.html
index 0d823ad2..9190bf20 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.18</a>.<br>
+    Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.19</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 2b4a0f23..62736312 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "codemirror",
-  "version": "5.65.18",
+  "version": "5.65.19",
   "main": "lib/codemirror.js",
   "style": "lib/codemirror.css",
   "author": {
diff --git a/src/edit/main.js b/src/edit/main.js
index d136287d..a2750745 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.18"
+CodeMirror.version = "5.65.19"