Skip to content

Commit d32c5d3

Browse files
committed
Mark version 5.39.0
1 parent fbc002f commit d32c5d3

File tree

7 files changed

+28
-4
lines changed

7 files changed

+28
-4
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Ahmad M. Zawawi
1919
ahoward
2020
Akeksandr Motsjonov
2121
Alasdair Smith
22+
AlbertHilb
2223
Alberto González Palomo
2324
Alberto Pose
2425
Albert Xing
@@ -101,6 +102,7 @@ Bharad
101102
BigBlueHat
102103
Billy Moon
103104
binny
105+
Bjorn Hansen
104106
B Krishna Chaitanya
105107
Blaine G
106108
blukat29
@@ -394,6 +396,7 @@ Kyle Kelley
394396
KyleMcNutt
395397
Lanfei
396398
Lanny
399+
laobubu
397400
Laszlo Vidacs
398401
leaf corcoran
399402
Lemmon
@@ -592,6 +595,7 @@ ray ratchup
592595
Ray Ratchup
593596
Remi Nyborg
594597
Renaud Durlin
598+
Reynold Xin
595599
Richard Denton
596600
Richard van der Meer
597601
Richard Z.H. Wang

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 5.39.0 (2018-06-20)
2+
3+
### Bug fixes
4+
5+
Fix issue that in some circumstances caused content to be clipped off at the bottom after a resize.
6+
7+
[markdown mode](http://codemirror.net/mode/markdown/): Improve handling of blank lines in HTML tags.
8+
9+
### New features
10+
11+
[stex mode](http://codemirror.net/mode/stex/): Add an `inMathMode` option to start the mode in math mode.
12+
113
## 5.38.0 (2018-05-21)
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.38.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.39.0</span>
7373
</h2>
7474

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

doc/releases.html

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

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

33+
<p class="rel">20-06-2018: <a href="http://codemirror.net/codemirror-5.39.0.zip">Version 5.39.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix issue that in some circumstances caused content to be clipped off at the bottom after a resize.</li>
37+
<li><a href="http://codemirror.net/mode/markdown/">markdown mode</a>: Improve handling of blank lines in HTML tags.</li>
38+
<li><a href="http://codemirror.net/mode/stex/">stex mode</a>: Add an <code>inMathMode</code> option to start the mode in math mode.</li>
39+
</ul>
40+
3341
<p class="rel">21-05-2018: <a href="http://codemirror.net/codemirror-5.38.0.zip">Version 5.38.0</a>:</p>
3442

3543
<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.38.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.39.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.38.1",
3+
"version": "5.39.0",
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.38.1"
69+
CodeMirror.version = "5.39.0"

0 commit comments

Comments
 (0)