Skip to content

Commit b6c7f3f

Browse files
committed
Mark release 5.17.0
1 parent 5d9808a commit b6c7f3f

File tree

8 files changed

+41
-4
lines changed

8 files changed

+41
-4
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ Hardest
218218
Harshvardhan Gupta
219219
Hasan Karahan
220220
Hector Oswaldo Caballero
221+
Hendrik Wallbaum
221222
Herculano Campos
222223
Hiroyuki Makino
223224
hitsthings
@@ -332,6 +333,7 @@ lochel
332333
Lorenzo Stoakes
333334
Luciano Longo
334335
Lu Fangjian
336+
Luke Granger-Brown
335337
Luke Stagner
336338
lynschinzer
337339
M1cha
@@ -444,6 +446,7 @@ Patrick Stoica
444446
Patrick Strawderman
445447
Paul Garvin
446448
Paul Ivanov
449+
Paul Masson
447450
Pavel
448451
Pavel Feldman
449452
Pavel Petržela
@@ -507,6 +510,7 @@ sheopory
507510
Shiv Deepak
508511
Shmuel Englard
509512
Shubham Jain
513+
Siamak Mokhtari
510514
silverwind
511515
sinkuu
512516
snasa

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 5.17.0 (2016-07-19)
2+
3+
### Bugfixes
4+
5+
Fix problem with wrapped trailing whitespace displaying incorrectly.
6+
7+
Prevent IME dialog from overlapping typed content in Chrome.
8+
9+
Improve measuring of characters near a line wrap.
10+
11+
[javascript mode](http://codemirror.net/mode/javascript): Improve support for `async`, allow trailing commas in `import` lists.
12+
13+
[vim bindings](http://codemirror.net/demo/vim.html): Fix backspace in replace mode.
14+
15+
[sublime bindings](http://codemirror.net/demo/sublime.html): Fix some key bindings on OS X to match Sublime Text.
16+
17+
### New features
18+
19+
[markdown mode](http://codemirror.net/mode/markdown): Add more classes to image links in highlight-formatting mode.
20+
121
## 5.16.0 (2016-06-20)
222

323
### Bugfixes

doc/compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ <h2>Script compression helper</h2>
3636
<input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
3737
<p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px;">
3838
<option value="http://codemirror.net/">HEAD</option>
39+
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.17.0;f=">5.17.0</option>
3940
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.16.0;f=">5.16.0</option>
4041
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.15.2;f=">5.15.2</option>
4142
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.15.0;f=">5.15.0</option>

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.16.2</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.17.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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@ <h2>Release notes and version history</h2>
3030

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

33+
<p class="rel">19-07-2016: <a href="http://codemirror.net/codemirror-5.17.0.zip">Version 5.17.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix problem with wrapped trailing whitespace displaying incorrectly.</li>
37+
<li>Prevent IME dialog from overlapping typed content in Chrome.</li>
38+
<li>Improve measuring of characters near a line wrap.</li>
39+
<li><a href="http://codemirror.net/mode/javascript">javascript mode</a>: Improve support for <code>async</code>, allow trailing commas in <code>import</code> lists.</li>
40+
<li><a href="http://codemirror.net/demo/vim.html">vim bindings</a>: Fix backspace in replace mode.</li>
41+
<li><a href="http://codemirror.net/demo/sublime.html">sublime bindings</a>: Fix some key bindings on OS X to match Sublime Text.</li>
42+
<li><a href="http://codemirror.net/mode/markdown">markdown mode</a>: Add more classes to image links in highlight-formatting mode.</li>
43+
</ul>
44+
3345
<p class="rel">20-06-2016: <a href="http://codemirror.net/codemirror-5.16.0.zip">Version 5.16.0</a>:</p>
3446

3547
<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.16.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.17.0</a>.<br>
100100
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a> or<br>
101101
read the <a href="doc/releases.html">release notes</a>.<br>
102102
There is a <a href="doc/compress.html">minification helper</a>.

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8929,7 +8929,7 @@
89298929

89308930
// THE END
89318931

8932-
CodeMirror.version = "5.16.2";
8932+
CodeMirror.version = "5.17.0";
89338933

89348934
return CodeMirror;
89358935
});

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.16.2",
3+
"version":"5.17.0",
44
"main": "lib/codemirror.js",
55
"description": "Full-featured in-browser code editor",
66
"license": "MIT",

0 commit comments

Comments
 (0)