Skip to content

Commit 4334727

Browse files
committed
Mark release 5.39.2
1 parent 0314530 commit 4334727

File tree

7 files changed

+27
-4
lines changed

7 files changed

+27
-4
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ Danila Malyutin
173173
Danny Yoo
174174
darealshinji
175175
Darius Roberts
176+
databricks-david-lewis
176177
Dave Brondsema
177178
Dave Myers
178179
David Barnett
@@ -410,6 +411,7 @@ Lior Shub
410411
LloydMilligan
411412
LM
412413
lochel
414+
Lorenzo Simionato
413415
Lorenzo Stoakes
414416
Louis Mauchet
415417
Luca Fabbri

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 5.39.2 (2018-07-20)
2+
3+
### Bug fixes
4+
5+
Fix issue where when you pass the document as a `Doc` instance to the `CodeMirror` constructor, the `mode` option was ignored.
6+
7+
Fix bug where line height could be computed wrong with a line widget below a collapsed line.
8+
9+
Fix overeager `.npmignore` dropping the `bin/source-highlight` utility from the distribution.
10+
11+
[show-hint addon](http://codemirror.net/doc/manual.html#addon_show-hint): Fix behavior when backspacing to the start of the line with completions open.
12+
113
## 5.39.0 (2018-06-20)
214

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

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

doc/releases.html

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

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

33+
<p class="rel">20-07-2018: <a href="http://codemirror.net/codemirror-5.39.2.zip">Version 5.39.2</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix issue where when you pass the document as a <code>Doc</code> instance to the <code>CodeMirror</code> constructor, the <code>mode</code> option was ignored.</li>
37+
<li>Fix bug where line height could be computed wrong with a line widget below a collapsed line.</li>
38+
<li>Fix overeager <code>.npmignore</code> dropping the <code>bin/source-highlight</code> utility from the distribution.</li>
39+
<li><a href="http://codemirror.net/doc/manual.html#addon_show-hint">show-hint addon</a>: Fix behavior when backspacing to the start of the line with completions open.</li>
40+
</ul>
41+
3342
<p class="rel">20-06-2018: <a href="http://codemirror.net/codemirror-5.39.0.zip">Version 5.39.0</a>:</p>
3443

3544
<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.39.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.39.2</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.39.1",
3+
"version": "5.39.2",
44
"main": "lib/codemirror.js",
55
"style": "lib/codemirror.css",
66
"description": "Full-featured in-browser code editor",

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.39.1"
69+
CodeMirror.version = "5.39.2"

0 commit comments

Comments
 (0)