Skip to content

Commit

Permalink
Mark version 5.65.14
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Jul 17, 2023
1 parent 69e38f5 commit 82ce3d2
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
## 5.65.14 (2023-07-17)

### Bug fixes

[clike mode](https://codemirror.net/5/mode/clike/): Fix poor indentation in some Java code.

[nsis mode](https://codemirror.net/5/mode/nsis/index.html): Recognize `!assert` command.

[lint addon](https://codemirror.net/5/doc/manual.html#addon_lint): Remove broken annotation deduplication.

## 5.65.13 (2023-04-27)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion doc/manual.html
Expand Up @@ -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.13</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.14</span>
</h2>

<p>CodeMirror is a code-editor component that can be embedded in
Expand Down
12 changes: 10 additions & 2 deletions doc/releases.html
Expand Up @@ -34,14 +34,22 @@ <h2>Version 6.x</h2>

<h2>Version 5.x</h2>

<p class="rel">20-12-2022: <a href="https://codemirror.net/5/codemirror-5.65.13.zip">Version 5.65.13</a>:</p>
<p class="rel">17-07-2023: <a href="https://codemirror.net/5/codemirror-5.65.14.zip">Version 5.65.14</a>:</p>

<ul class="rel-note">
<li><a href="https://codemirror.net/5/mode/clike/">clike mode</a>: Fix poor indentation in some Java code.</li>
<li><a href="https://codemirror.net/5/mode/nsis/index.html">nsis mode</a>: Recognize <code>!assert</code> command.</li>
<li><a href="https://codemirror.net/5/doc/manual.html#addon_lint">lint addon</a>: Remove broken annotation deduplication.</li>
</ul>

<p class="rel">27-04-2023: <a href="https://codemirror.net/5/codemirror-5.65.13.zip">Version 5.65.13</a>:</p>

<ul class="rel-note">
<li><a href="https://codemirror.net/5/mode/dart/index.html">dart mode</a>: Add some new keywords.</li>
<li><a href="https://codemirror.net/5/mode/clike/">clike mode</a>: Tokenize Scala character literals.</li>
</ul>

<p class="rel">20-12-2022: <a href="https://codemirror.net/5/codemirror-5.65.12.zip">Version 5.65.12</a>:</p>
<p class="rel">20-02-2023: <a href="https://codemirror.net/5/codemirror-5.65.12.zip">Version 5.65.12</a>:</p>

<ul class="rel-note">
<li><a href="https://codemirror.net/5/mode/python/">python mode</a>: Add new built-ins and keywords.</li>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -92,7 +92,7 @@ <h2>This is CodeMirror</h2>
</script>

<div class=actions>
Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.13</a>.<br>
Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.14</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>.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.65.13",
"version": "5.65.14",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/edit/main.js
Expand Up @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"

addLegacyProps(CodeMirror)

CodeMirror.version = "5.65.13"
CodeMirror.version = "5.65.14"

0 comments on commit 82ce3d2

Please sign in to comment.