Skip to content

Commit

Permalink
Mark version 5.62.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Jul 20, 2021
1 parent 10510ba commit 50aa8c0
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 4 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ Bernhard Sirlinger
Bert Chang
Bharad
BigBlueHat
Billiam
Billy Moon
Bin Ni
binny
Expand Down Expand Up @@ -620,6 +621,7 @@ Mike Ivanov
Mike Kadin
Mike Kobit
Milan Szekely
MinJune Kim
MinRK
Miraculix87
misfo
Expand All @@ -634,6 +636,7 @@ ms
mtaran-google
Mu-An ✌️ Chiou
Mu-An Chiou
Mykola Martynovets
mzabuawala
Narciso Jaramillo
nathanlesage
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 5.62.1 (2021-07-20)

### Bug fixes

[vim bindings](https://codemirror.net/demo/vim.html): Make matching of upper-case characters more Unicode-aware.

[lint addon](https://codemirror.net/doc/manual.html#addon_lint): Prevent options passed to the addon itself from being given to the linter.

[show-hint addon](https://codemirror.net/doc/manual.html#addon_show-hint): Improve screen reader support.

[search addon](https://codemirror.net/demo/search.html): Avoid using `innerHTML`.

## 5.62.0 (2021-06-21)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion doc/manual.html
Original file line number Diff line number Diff line change
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.62.0</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.62.1</span>
</h2>

<p>CodeMirror is a code-editor component that can be embedded in
Expand Down
9 changes: 9 additions & 0 deletions doc/releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ <h2>Release notes and version history</h2>

<h2>Version 5.x</h2>

<p class="rel">20-07-2021: <a href="https://codemirror.net/codemirror-5.62.1.zip">Version 5.62.1</a>:</p>

<ul class="rel-note">
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Make matching of upper-case characters more Unicode-aware.</li>
<li><a href="https://codemirror.net/doc/manual.html#addon_lint">lint addon</a>: Prevent options passed to the addon itself from being given to the linter.</li>
<li><a href="https://codemirror.net/doc/manual.html#addon_show-hint">show-hint addon</a>: Improve screen reader support.</li>
<li><a href="https://codemirror.net/demo/search.html">search addon</a>: Avoid using <code>innerHTML</code>.</li>
</ul>

<p class="rel">21-06-2021: <a href="https://codemirror.net/codemirror-5.62.0.zip">Version 5.62.0</a>:</p>

<ul class="rel-note">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ <h2>This is CodeMirror</h2>
</div>
</div>
<div class=actionsleft>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.62.0</a>.<br>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.62.1</a>.<br>
You can see the <a href="https://github.com/codemirror/codemirror" 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.62.0",
"version": "5.62.1",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/edit/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"

addLegacyProps(CodeMirror)

CodeMirror.version = "5.62.0"
CodeMirror.version = "5.62.1"

0 comments on commit 50aa8c0

Please sign in to comment.