Skip to content

Commit

Permalink
Mark version 5.61.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Apr 20, 2021
1 parent 97ee575 commit eac70bb
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 4 deletions.
6 changes: 6 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Abhishek Gahlot
Adam Ahmed
Adam King
Adam Particka
Adam Wight
adanlobato
Adán Lobato
Aditya Toshniwal
Expand All @@ -28,6 +29,7 @@ AlbertHilb
Alberto González Palomo
Alberto Pose
Albert Xing
Alexander Marks
Alexander Pavlov
Alexander Schepanovski
Alexander Shvets
Expand Down Expand Up @@ -265,6 +267,7 @@ Fauntleroy
fbuchinger
feizhang365
Felipe Lalanne
Felipe S. S. Schneider
Felix Raab
ficristo
Filip Noetzel
Expand Down Expand Up @@ -477,6 +480,7 @@ Kim-Anh Tran
Klaus Silveira
Koh Zi Han, Cliff
komakino
Konstantin Chernenko
Konstantin Lopuhin
koops
Kris Ciccarello
Expand Down Expand Up @@ -589,6 +593,7 @@ meshuamam
Metatheos
Micah Dubinko
Michael
Michael Chirico
Michael Goderbauer
Michael Grey
Michael Kaminsky
Expand Down Expand Up @@ -798,6 +803,7 @@ silverwind
Simon Edwards
Simon Huber
sinkuu
Slava Rozhnev
snasa
soliton4
sonson
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 5.61.0 (2021-04-20)

### Bug fixes

Improve support for being in a shadow DOM in contenteditable mode.

Prevent line number from being read by screen readers.

[show-hint addon](https://codemirror.net/doc/manual.html#addon_show-hint): Fix a crash caused by a race condition.

[javascript mode](https://codemirror.net/mode/javascript/): Improve scope tracking.

### New features

The library now emits an `"updateGutter"` event when the gutter width changes.

[emacs bindings](https://codemirror.net/demo/emacs.html): Provide named commands for all bindings.

## 5.60.0 (2021-03-20)

### 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.60.0</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.61.0</span>
</h2>

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

<h2>Version 5.x</h2>

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

<ul class="rel-note">
<li>The library now emits an <code>"updateGutter"</code> event when the gutter width changes.</li>
<li><a href="https://codemirror.net/demo/emacs.html">emacs bindings</a>: Provide named commands for all bindings.</li>
<li>Improve support for being in a shadow DOM in contenteditable mode.</li>
<li>Prevent line number from being read by screen readers.</li>
<li><a href="https://codemirror.net/doc/manual.html#addon_show-hint">show-hint addon</a>: Fix a crash caused by a race condition.</li>
<li><a href="https://codemirror.net/mode/javascript/">javascript mode</a>: Improve scope tracking.</li>
</ul>

<p class="rel">20-03-2021: <a href="https://codemirror.net/codemirror-5.60.0.zip">Version 5.60.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.60.0</a>.<br>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.61.0</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.60.0",
"version": "5.61.0",
"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.60.0"
CodeMirror.version = "5.61.0"

0 comments on commit eac70bb

Please sign in to comment.