Skip to content

Commit 51fdbcc

Browse files
committed
Mark version 5.60.0
1 parent f015405 commit 51fdbcc

File tree

7 files changed

+37
-4
lines changed

7 files changed

+37
-4
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ CodeBitt
178178
coderaiser
179179
Cole R Lawrence
180180
ComFreek
181+
Cornelius Weig
181182
Cristian Prieto
182183
Curran Kelleher
183184
Curtis Gagliardi
@@ -343,6 +344,7 @@ Hugues Malphettes
343344
Ian Beck
344345
Ian Davies
345346
Ian Dickinson
347+
Ian Henderson
346348
ianhi
347349
Ian Rose
348350
Ian Wehrman
@@ -364,6 +366,7 @@ Jack Douglas
364366
Jacob Lee
365367
Jaimin
366368
Jake Peyser
369+
Jakob Kummerow
367370
Jakob Miland
368371
Jakub T. Jankiewicz
369372
Jakub Vrana
@@ -499,6 +502,7 @@ Liam Newman
499502
Libo Cannici
500503
Lior Goldberg
501504
Lior Shub
505+
lishid
502506
LloydMilligan
503507
LM
504508
lochel

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 5.60.0 (2021-03-20)
2+
3+
### Bug fixes
4+
5+
Fix autofocus feature in contenteditable mode.
6+
7+
[simple mode addon](https://codemirror.net/demo/simplemode.html): Fix a null-dereference crash.
8+
9+
[multiplex addon](https://codemirror.net/demo/multiplex.html): Make it possible to use `parseDelimiters` when both delimiters are the same.
10+
11+
[julia mode](https://codemirror.net/mode/julia/): Fix a lockup bug.
12+
13+
### New features
14+
15+
`setSelections` now allows ranges to omit the `head` property when it is equal to `anchor`.
16+
17+
[sublime bindings](https://codemirror.net/demo/sublime.html): Add support for reverse line sorting.
18+
119
## 5.59.4 (2021-02-24)
220

321
### Bug fixes

doc/manual.html

Lines changed: 1 addition & 1 deletion
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.59.4</span>
73+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.60.0</span>
7474
</h2>
7575

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

doc/releases.html

Lines changed: 11 additions & 0 deletions
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-03-2021: <a href="https://codemirror.net/codemirror-5.60.0.zip">Version 5.60.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li><code>setSelections</code> now allows ranges to omit the <code>head</code> property when it is equal to <code>anchor</code>.</li>
37+
<li><a href="https://codemirror.net/demo/sublime.html">sublime bindings</a>: Add support for reverse line sorting.</li>
38+
<li>Fix autofocus feature in contenteditable mode.</li>
39+
<li><a href="https://codemirror.net/demo/simplemode.html">simple mode addon</a>: Fix a null-dereference crash.</li>
40+
<li><a href="https://codemirror.net/demo/multiplex.html">multiplex addon</a>: Make it possible to use <code>parseDelimiters</code> when both delimiters are the same.</li>
41+
<li><a href="https://codemirror.net/mode/julia/">julia mode</a>: Fix a lockup bug.</li>
42+
</ul>
43+
3344
<p class="rel">24-02-2021: <a href="https://codemirror.net/codemirror-5.59.4.zip">Version 5.59.4</a>:</p>
3445

3546
<ul class="rel-note">

index.html

Lines changed: 1 addition & 1 deletion
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.59.4</a>.<br>
105+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.60.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

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

src/edit/main.js

Lines changed: 1 addition & 1 deletion
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.59.4"
69+
CodeMirror.version = "5.60.0"

0 commit comments

Comments
 (0)