Commit 998f328b for codemirror.net

commit 998f328b6b01217f6ef9e958ce3a128daddc592e
Author: Marijn Haverbeke <marijn@haverbeke.berlin>
Date:   Fri Sep 20 13:18:09 2024 +0200

    Mark version 5.65.18

diff --git a/AUTHORS b/AUTHORS
index 5bc0ef4f..db9c3671 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -41,6 +41,7 @@ alexey-k
 Alex Piggott
 Alf Eaton
 Aliaksei Chapyzhenka
+Allef Santana (garug)
 Allen Sarkisyan
 Ami Fischman
 Amin Shali
@@ -748,6 +749,7 @@ Pi Delport
 Pierre Gerold
 Pieter Ouwerkerk
 Piyush
+pkucode
 Pontus Granström
 Pontus Melke
 prasanthj
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 81107b20..665ec140 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## 5.65.18 (2024-09-20)
+
+### Bug fixes
+
+[dart mode](https://codemirror.net/5/mode/dart/index.html): Handle numeric separators.
+
+[groovy mode](https://codemirror.net/5/mode/groovy/index.html): Fix a bug in highlighting interpolated variable names.
+
 ## 5.65.17 (2024-07-20)

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

   <h2>Version 5.x</h2>

+  <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">
+    <li><a href="https://codemirror.net/5/mode/dart/index.html">dart mode</a>: Handle numeric separators.</li>
+    <li><a href="https://codemirror.net/5/mode/groovy/index.html">groovy mode</a>: Fix a bug in highlighting interpolated variable names.</li>
+  </ul>
+
   <p class="rel">20-07-2024: <a href="https://codemirror.net/5/codemirror-5.65.17.zip">Version 5.65.17</a>:</p>

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