Skip to content

Commit 763575c

Browse files
committed
Mark release 5.20.0
1 parent 1523a8b commit 763575c

File tree

6 files changed

+53
-3
lines changed

6 files changed

+53
-3
lines changed

AUTHORS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Adam King
99
adanlobato
1010
Adán Lobato
1111
Adrian Aichner
12+
Adrian Heine
1213
aeroson
1314
Ahmad Amireh
1415
Ahmad M. Zawawi
@@ -61,10 +62,12 @@ anthonygego
6162
Anthony Gégo
6263
Anthony Grimes
6364
Anton Kovalyov
65+
Apollo Zhu
6466
AQNOUCH Mohammed
6567
areos
6668
Arnab Bose
6769
as3boyan
70+
atelierbram
6871
AtomicPages LLC
6972
Atul Bhouraskar
7073
Aurelian Oancea
@@ -151,6 +154,7 @@ deebugger
151154
Deep Thought
152155
Devin Abbott
153156
Devon Carew
157+
Dick Choi
154158
dignifiedquire
155159
Dimage Sapelkin
156160
Dmitry Kiselyov
@@ -284,6 +288,7 @@ John Van Der Loo
284288
Jon Ander Peñalba
285289
Jonas Döbertin
286290
Jonathan Malmaud
291+
Jon Gacnik
287292
jongalloway
288293
Jon Malmaud
289294
Jon Sangster
@@ -321,6 +326,7 @@ Kris Ciccarello
321326
ks-ifware
322327
kubelsmieci
323328
KwanEsq
329+
Kyle Kelley
324330
Lanfei
325331
Lanny
326332
Laszlo Vidacs
@@ -336,6 +342,7 @@ lochel
336342
Lorenzo Stoakes
337343
Luciano Longo
338344
Lu Fangjian
345+
Luke Browning
339346
Luke Granger-Brown
340347
Luke Stagner
341348
lynschinzer
@@ -358,6 +365,7 @@ Mario Pietsch
358365
Mark Anderson
359366
Mark Lentczner
360367
Marko Bonaci
368+
Mark Peace
361369
Markus Bordihn
362370
Martin Balek
363371
Martín Gaitán
@@ -415,6 +423,7 @@ Moritz Schwörer
415423
mps
416424
ms
417425
mtaran-google
426+
Mu-An Chiou
418427
Narciso Jaramillo
419428
Nathan Williams
420429
ndr
@@ -439,6 +448,7 @@ nlwillia
439448
noragrossman
440449
Norman Rzepka
441450
Oreoluwa Onatemowo
451+
Oskar Segersvärd
442452
pablo
443453
pabloferz
444454
Page
@@ -547,6 +557,7 @@ tfjgeorge
547557
Thaddee Tyl
548558
thanasis
549559
TheHowl
560+
themrmax
550561
think
551562
Thomas Dvornik
552563
Thomas Kluyver
@@ -557,6 +568,7 @@ Timothy Farrell
557568
Timothy Gu
558569
Timothy Hatcher
559570
TobiasBg
571+
Todd Berman
560572
Tomas-A
561573
Tomas Varaneckas
562574
Tom Erik Støwer

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 5.20.0 (2016-10-20)
2+
3+
### Bug fixes
4+
5+
Make `newlineAndIndent` command work with multiple cursors on the same line.
6+
7+
Make sure keypress events for backspace are ignored.
8+
9+
Tokens styled with overlays no longer get a nonsense `cm-cm-overlay` class.
10+
11+
Line endings for pasted content are now normalized to the editor's [preferred ending](http://codemirror.net/doc/manual.html#option_lineSeparator).
12+
13+
[javascript mode](http://codemirror.net/mode/javascript): Improve support for class expressions. Support TypeScript optional class properties, the `abstract` keyword, and return type declarations for arrow functions.
14+
15+
[css mode](http://codemirror.net/mode/css): Fix highlighting of mixed-case keywords.
16+
17+
[closebrackets addon](http://codemirror.net/doc/manual.html#addon_closebrackets): Improve behavior when typing a quote before a string.
18+
19+
### New features
20+
21+
The core is now maintained as a number of small files, using ES6 syntax and modules, under the `src/` directory. A git checkout no longer contains a working `codemirror.js` until you `npm build` (but when installing from NPM, it is included).
22+
23+
The [`refresh`](http://codemirror.net/doc/manual.html#event_refresh) event is now documented and stable.
24+
125
## 5.19.0 (2016-09-20)
226

327
### Bugfixes

doc/manual.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<section class=first id=overview>
7070
<h2 style="position: relative">
7171
User manual and reference guide
72-
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.19.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.20.0</span>
7373
</h2>
7474

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

doc/releases.html

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

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

33+
<p class="rel">20-10-2016: <a href="http://codemirror.net/codemirror-5.20.0.zip">Version 5.20.0</a>:</p>
34+
35+
<ul class=rel-note>
36+
<li>Make <code>newlineAndIndent</code> command work with multiple cursors on the same line.</li>
37+
<li>Make sure keypress events for backspace are ignored.</li>
38+
<li>Tokens styled with overlays no longer get a nonsense <code>cm-cm-overlay</code> class.</li>
39+
<li>Line endings for pasted content are now normalized to the editor's <a href="http://codemirror.net/doc/manual.html#option_lineSeparator">preferred ending</a>.</li>
40+
<li><a href="http://codemirror.net/mode/javascript">javascript mode</a>: Improve support for class expressions. Support TypeScript optional class properties, the <code>abstract</code> keyword, and return type declarations for arrow functions.</li>
41+
<li><a href="http://codemirror.net/mode/css">css mode</a>: Fix highlighting of mixed-case keywords.</li>
42+
<li><a href="http://codemirror.net/doc/manual.html#addon_closebrackets">closebrackets addon</a>: Improve behavior when typing a quote before a string.</li>
43+
<li>The core is now maintained as a number of small files, using ES6 syntax and modules, under the <code>src/</code> directory. A git checkout no longer contains a working <code>codemirror.js</code> until you <code>npm build</code> (but when installing from NPM, it is included).</li>
44+
<li>The <a href="http://codemirror.net/doc/manual.html#event_refresh"><code>refresh</code></a> event is now documented and stable.</li>
45+
</ul>
46+
3347
<p class="rel">20-09-2016: <a href="http://codemirror.net/codemirror-5.19.0.zip">Version 5.19.0</a>:</p>
3448

3549
<ul class=rel-note>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ <h2>This is CodeMirror</h2>
9696
</div>
9797
</div>
9898
<div class=actionsleft>
99-
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.19.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.20.0</a>.<br>
100100
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
101101
read the <a href="doc/releases.html">release notes</a>,<br>
102102
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.19.1",
3+
"version": "5.20.0",
44
"main": "lib/codemirror.js",
55
"description": "Full-featured in-browser code editor",
66
"license": "MIT",

0 commit comments

Comments
 (0)