Skip to content

Commit 9b57f4b

Browse files
committed
Mark version 5.61.1
1 parent 4cc111c commit 9b57f4b

File tree

7 files changed

+32
-4
lines changed

7 files changed

+32
-4
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,7 @@ jochenberger
416416
Jochen Berger
417417
Joel Einbinder
418418
joelpinheiro
419+
Joe Predham
419420
joewalsh
420421
Johan Ask
421422
Johannes
@@ -433,6 +434,7 @@ Jonas Helfer
433434
Jonathan Dierksen
434435
Jonathan Hart
435436
Jonathan Malmaud
437+
Jonathan Rascher
436438
Jon Gacnik
437439
jongalloway
438440
Jon Malmaud
@@ -749,6 +751,7 @@ Roberto Abdelkader Martínez Pérez
749751
robertop23
750752
Roberto Vidal
751753
Robert Plummer
754+
Roman Frolov
752755
Roman Janusz
753756
Rrandom
754757
Rrrandom
@@ -871,6 +874,7 @@ Tom MacWright
871874
Tom McLaughlin
872875
Tony Jian
873876
tophf
877+
Torben Bundt
874878
Torgeir Thoresen
875879
totalamd
876880
Travis Heppe

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 5.61.1 (2021-05-20)
2+
3+
### Bug fixes
4+
5+
Fix a bug where changing the editor's document could confuse text-direction management.
6+
7+
Fix a bug in horizontally scrolling the cursor into view.
8+
9+
Optimize adding lots of marks in a single transaction.
10+
11+
[simple mode addon](https://codemirror.net/demo/simplemode.html): Support regexps with a unicode flag.
12+
13+
[javascript mode](https://codemirror.net/mode/javascript/index.html): Add support for TypeScript template string types, improve integration with JSX mode.
14+
115
## 5.61.0 (2021-04-20)
216

317
### 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.61.0</span>
73+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.61.1</span>
7474
</h2>
7575

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

doc/releases.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,16 @@ <h2>Release notes and version history</h2>
3030

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

33+
<p class="rel">20-05-2021: <a href="https://codemirror.net/codemirror-5.61.1.zip">Version 5.61.1</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix a bug where changing the editor’s document could confuse text-direction management.</li>
37+
<li>Fix a bug in horizontally scrolling the cursor into view.</li>
38+
<li>Optimize adding lots of marks in a single transaction.</li>
39+
<li><a href="https://codemirror.net/demo/simplemode.html">simple mode addon</a>: Support regexps with a unicode flag.</li>
40+
<li><a href="https://codemirror.net/mode/javascript/index.html">javascript mode</a>: Add support for TypeScript template string types, improve integration with JSX mode.</li>
41+
</ul>
42+
3343
<p class="rel">20-04-2021: <a href="https://codemirror.net/codemirror-5.61.0.zip">Version 5.61.0</a>:</p>
3444

3545
<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.61.0</a>.<br>
105+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.61.1</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.61.0",
3+
"version": "5.61.1",
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.61.0"
69+
CodeMirror.version = "5.61.1"

0 commit comments

Comments
 (0)