Skip to content

Commit eac70bb

Browse files
committedApr 20, 2021
Mark version 5.61.0
1 parent 97ee575 commit eac70bb

File tree

7 files changed

+39
-4
lines changed

7 files changed

+39
-4
lines changed
 

‎AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Abhishek Gahlot
1010
Adam Ahmed
1111
Adam King
1212
Adam Particka
13+
Adam Wight
1314
adanlobato
1415
Adán Lobato
1516
Aditya Toshniwal
@@ -28,6 +29,7 @@ AlbertHilb
2829
Alberto González Palomo
2930
Alberto Pose
3031
Albert Xing
32+
Alexander Marks
3133
Alexander Pavlov
3234
Alexander Schepanovski
3335
Alexander Shvets
@@ -265,6 +267,7 @@ Fauntleroy
265267
fbuchinger
266268
feizhang365
267269
Felipe Lalanne
270+
Felipe S. S. Schneider
268271
Felix Raab
269272
ficristo
270273
Filip Noetzel
@@ -477,6 +480,7 @@ Kim-Anh Tran
477480
Klaus Silveira
478481
Koh Zi Han, Cliff
479482
komakino
483+
Konstantin Chernenko
480484
Konstantin Lopuhin
481485
koops
482486
Kris Ciccarello
@@ -589,6 +593,7 @@ meshuamam
589593
Metatheos
590594
Micah Dubinko
591595
Michael
596+
Michael Chirico
592597
Michael Goderbauer
593598
Michael Grey
594599
Michael Kaminsky
@@ -798,6 +803,7 @@ silverwind
798803
Simon Edwards
799804
Simon Huber
800805
sinkuu
806+
Slava Rozhnev
801807
snasa
802808
soliton4
803809
sonson

‎CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 5.61.0 (2021-04-20)
2+
3+
### Bug fixes
4+
5+
Improve support for being in a shadow DOM in contenteditable mode.
6+
7+
Prevent line number from being read by screen readers.
8+
9+
[show-hint addon](https://codemirror.net/doc/manual.html#addon_show-hint): Fix a crash caused by a race condition.
10+
11+
[javascript mode](https://codemirror.net/mode/javascript/): Improve scope tracking.
12+
13+
### New features
14+
15+
The library now emits an `"updateGutter"` event when the gutter width changes.
16+
17+
[emacs bindings](https://codemirror.net/demo/emacs.html): Provide named commands for all bindings.
18+
119
## 5.60.0 (2021-03-20)
220

321
### Bug fixes

‎doc/manual.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<section class=first id=overview>
7171
<h2 style="position: relative">
7272
User manual and reference guide
73-
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.60.0</span>
73+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.61.0</span>
7474
</h2>
7575

7676
<p>CodeMirror is a code-editor component that can be embedded in

‎doc/releases.html

+11
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,17 @@ <h2>Release notes and version history</h2>
3030

3131
<h2>Version 5.x</h2>
3232

33+
<p class="rel">20-04-2021: <a href="https://codemirror.net/codemirror-5.61.0.zip">Version 5.61.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>The library now emits an <code>"updateGutter"</code> event when the gutter width changes.</li>
37+
<li><a href="https://codemirror.net/demo/emacs.html">emacs bindings</a>: Provide named commands for all bindings.</li>
38+
<li>Improve support for being in a shadow DOM in contenteditable mode.</li>
39+
<li>Prevent line number from being read by screen readers.</li>
40+
<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>
41+
<li><a href="https://codemirror.net/mode/javascript/">javascript mode</a>: Improve scope tracking.</li>
42+
</ul>
43+
3344
<p class="rel">20-03-2021: <a href="https://codemirror.net/codemirror-5.60.0.zip">Version 5.60.0</a>:</p>
3445

3546
<ul class="rel-note">

‎index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ <h2>This is CodeMirror</h2>
102102
</div>
103103
</div>
104104
<div class=actionsleft>
105-
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.60.0</a>.<br>
105+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.61.0</a>.<br>
106106
You can see the <a href="https://github.com/codemirror/codemirror" title="GitHub repository">code</a>,<br>
107107
read the <a href="doc/releases.html">release notes</a>,<br>
108108
or study the <a href="doc/manual.html">user manual</a>.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror",
3-
"version": "5.60.0",
3+
"version": "5.61.0",
44
"main": "lib/codemirror.js",
55
"style": "lib/codemirror.css",
66
"author": {

‎src/edit/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
6666

6767
addLegacyProps(CodeMirror)
6868

69-
CodeMirror.version = "5.60.0"
69+
CodeMirror.version = "5.61.0"

0 commit comments

Comments
 (0)