Skip to content

Commit bfdfb21

Browse files
committed
Mark version 5.22.0
1 parent ae45e2b commit bfdfb21

File tree

7 files changed

+38
-5
lines changed

7 files changed

+38
-5
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Andrea G
4545
Andreas Reischuck
4646
Andres Taylor
4747
Andre von Houck
48+
Andrew Cheng
4849
Andrey Fedorov
4950
Andrey Klyuchnikov
5051
Andrey Lushnikov
@@ -186,6 +187,7 @@ fbuchinger
186187
feizhang365
187188
Felipe Lalanne
188189
Felix Raab
190+
ficristo
189191
Filip Noetzel
190192
Filip Stollár
191193
flack
@@ -500,6 +502,7 @@ Remi Nyborg
500502
Richard Denton
501503
Richard van der Meer
502504
Richard Z.H. Wang
505+
Rishi Goomar
503506
Robert Crossfield
504507
Roberto Abdelkader Martínez Pérez
505508
robertop23
@@ -582,6 +585,7 @@ Todd Berman
582585
Tomas-A
583586
Tomas Varaneckas
584587
Tom Erik Støwer
588+
Tom Klancer
585589
Tom MacWright
586590
Tony Jian
587591
Travis Heppe

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 5.22.0 (2016-12-20)
2+
3+
### Bug fixes
4+
5+
[sublime bindings](http://codemirror.net/demo/sublime.html): Make `selectBetweenBrackets` work with multiple cursors.
6+
7+
[javascript mode](http://codemirror.net/mode/javascript/): Fix issues with parsing complex TypeScript types, imports, and exports.
8+
9+
A contentEditable editor instance with autofocus enabled no longer crashes during initializing.
10+
11+
### New features
12+
13+
[emacs bindings](http://codemirror.net/demo/emacs.html): Export `CodeMirror.emacs` to allow other addons to hook into Emacs-style functionality.
14+
15+
[active-line addon](http://codemirror.net/doc/manual.html#addon_active-line): Add `nonEmpty` option.
16+
17+
New event: [`optionChange`](http://codemirror.net/doc/manual.html#event_optionChange).
18+
119
## 5.21.0 (2016-11-21)
220

321
### Bug fixes

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.21.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.22.0</span>
7373
</h2>
7474

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

doc/releases.html

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,18 @@ <h2>Release notes and version history</h2>
3030

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

33-
<p class="rel">21-11-2016: <a href="http://codemirror.net/codemirror-5.21.0.zip">Version 5.21.0</a>:</p>
33+
<p class="rel">20-12-2016: <a href="http://codemirror.net/codemirror-5.22.0.zip">Version 5.22.0</a>:</p>
34+
35+
<ul class=rel-note>
36+
<li><a href="http://codemirror.net/demo/sublime.html">sublime bindings</a>: Make <code>selectBetweenBrackets</code> work with multiple cursors.</li>
37+
<li><a href="http://codemirror.net/mode/javascript/">javascript mode</a>: Fix issues with parsing complex TypeScript types, imports, and exports.</li>
38+
<li>A contentEditable editor instance with autofocus enabled no longer crashes during initializing.</li>
39+
<li><a href="http://codemirror.net/demo/emacs.html">emacs bindings</a>: Export <code>CodeMirror.emacs</code> to allow other addons to hook into Emacs-style functionality.</li>
40+
<li><a href="http://codemirror.net/doc/manual.html#addon_active-line">active-line addon</a>: Add <code>nonEmpty</code> option.</li>
41+
<li>New event: <a href="http://codemirror.net/doc/manual.html#event_optionChange"><code>optionChange</code></a>.</li>
42+
</ul>
43+
44+
<p class="rel">21-11-2016: <a href="http://codemirror.net/codemirror-5.21.0.zip">Version 5.21.0</a>:</p>
3445

3546
<ul class=rel-note>
3647
<li>Tapping/clicking the editor in <a href="http://codemirror.net/doc/manual.html#option_inputStyle">contentEditable mode</a> on Chrome now puts the cursor at the tapped position.</li>

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.21.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.22.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.21.1",
3+
"version": "5.22.0",
44
"main": "lib/codemirror.js",
55
"description": "Full-featured in-browser code editor",
66
"license": "MIT",

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"
6666

6767
addLegacyProps(CodeMirror)
6868

69-
CodeMirror.version = "5.21.1"
69+
CodeMirror.version = "5.22.0"

0 commit comments

Comments
 (0)