Skip to content

Commit 7f525bb

Browse files
committed
Mark version 5.57.0
1 parent 4cfb3a0 commit 7f525bb

File tree

7 files changed

+36
-4
lines changed

7 files changed

+36
-4
lines changed

AUTHORS

+6
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ Bert Chang
113113
Bharad
114114
BigBlueHat
115115
Billy Moon
116+
Bin Ni
116117
binny
117118
Bjorn Hansen
118119
B Krishna Chaitanya
@@ -313,6 +314,7 @@ Hakan Tunc
313314
Hanno Fellmann
314315
Hans Engel
315316
Hanzhao Deng
317+
Haoran Yu
316318
Harald Schilly
317319
Hardest
318320
Harshvardhan Gupta
@@ -329,6 +331,7 @@ hidaiy
329331
Hiroyuki Makino
330332
hitsthings
331333
Hocdoc
334+
Howard
332335
Hugues Malphettes
333336
Ian Beck
334337
Ian Davies
@@ -492,6 +495,7 @@ Lorenzo Simionato
492495
Lorenzo Stoakes
493496
Louis Mauchet
494497
Luca Fabbri
498+
Lucas Buchala
495499
Luciano Longo
496500
Luciano Santana
497501
Lu Fangjian
@@ -637,6 +641,7 @@ Olivia Ytterbrink
637641
Opender Singh
638642
opl-
639643
Oreoluwa Onatemowo
644+
orionlee
640645
oscar.lofwenhamn
641646
Oskar Segersvärd
642647
ossdev
@@ -821,6 +826,7 @@ Tobias Bertelsen
821826
TobiasBg
822827
Todd Berman
823828
Todd Kennedy
829+
tokafew420
824830
Tomas-A
825831
Tomas Varaneckas
826832
Tom Erik Støwer

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 5.57.0 (2020-08-20)
2+
3+
### Bug fixes
4+
5+
Fix issue that broke binding the macOS Command key.
6+
7+
[comment addon](https://codemirror.net/doc/manual.html#addon_comment): Keep selection in front of inserted markers when adding a block comment.
8+
9+
[css mode](https://codemirror.net/mode/css/): Recognize more properties and value names.
10+
11+
[annotatescrollbar addon](https://codemirror.net/doc/manual.html#addon_annotatescrollbar): Don't hide matches in collapsed content.
12+
13+
### New features
14+
15+
[vim bindings](https://codemirror.net/demo/vim.html): Support tag text objects in xml and html modes.
16+
117
## 5.56.0 (2020-07-20)
218

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

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

doc/releases.html

+10
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-08-2020: <a href="https://codemirror.net/codemirror-5.57.0.zip">Version 5.57.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix issue that broke binding the macOS Command key.</li>
37+
<li><a href="https://codemirror.net/doc/manual.html#addon_comment">comment addon</a>: Keep selection in front of inserted markers when adding a block comment.</li>
38+
<li><a href="https://codemirror.net/mode/css/">css mode</a>: Recognize more properties and value names.</li>
39+
<li><a href="https://codemirror.net/doc/manual.html#addon_annotatescrollbar">annotatescrollbar addon</a>: Don’t hide matches in collapsed content.</li>
40+
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Support tag text objects in xml and html modes.</li>
41+
</ul>
42+
3343
<p class="rel">20-07-2020: <a href="https://codemirror.net/codemirror-5.56.0.zip">Version 5.56.0</a>:</p>
3444

3545
<ul class="rel-note">

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ <h2>This is CodeMirror</h2>
9999
</div>
100100
</div>
101101
<div class=actionsleft>
102-
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.56.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.57.0</a>.<br>
103103
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
104104
read the <a href="doc/releases.html">release notes</a>,<br>
105105
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.56.0",
3+
"version": "5.57.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.56.0"
69+
CodeMirror.version = "5.57.0"

0 commit comments

Comments
 (0)