Skip to content

Commit

Permalink
Mark release 5.39.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Jul 20, 2018
1 parent 0314530 commit 4334727
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 4 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ Danila Malyutin
Danny Yoo
darealshinji
Darius Roberts
databricks-david-lewis
Dave Brondsema
Dave Myers
David Barnett
Expand Down Expand Up @@ -410,6 +411,7 @@ Lior Shub
LloydMilligan
LM
lochel
Lorenzo Simionato
Lorenzo Stoakes
Louis Mauchet
Luca Fabbri
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 5.39.2 (2018-07-20)

### Bug fixes

Fix issue where when you pass the document as a `Doc` instance to the `CodeMirror` constructor, the `mode` option was ignored.

Fix bug where line height could be computed wrong with a line widget below a collapsed line.

Fix overeager `.npmignore` dropping the `bin/source-highlight` utility from the distribution.

[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.

## 5.39.0 (2018-06-20)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion doc/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<section class=first id=overview>
<h2 style="position: relative">
User manual and reference guide
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.39.1</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.39.2</span>
</h2>

<p>CodeMirror is a code-editor component that can be embedded in
Expand Down
9 changes: 9 additions & 0 deletions doc/releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ <h2>Release notes and version history</h2>

<h2>Version 5.x</h2>

<p class="rel">20-07-2018: <a href="http://codemirror.net/codemirror-5.39.2.zip">Version 5.39.2</a>:</p>

<ul class="rel-note">
<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>
<li>Fix bug where line height could be computed wrong with a line widget below a collapsed line.</li>
<li>Fix overeager <code>.npmignore</code> dropping the <code>bin/source-highlight</code> utility from the distribution.</li>
<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>
</ul>

<p class="rel">20-06-2018: <a href="http://codemirror.net/codemirror-5.39.0.zip">Version 5.39.0</a>:</p>

<ul class="rel-note">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ <h2>This is CodeMirror</h2>
</div>
</div>
<div class=actionsleft>
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.39.0</a>.<br>
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.39.2</a>.<br>
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
read the <a href="doc/releases.html">release notes</a>,<br>
or study the <a href="doc/manual.html">user manual</a>.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.39.1",
"version": "5.39.2",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"description": "Full-featured in-browser code editor",
Expand Down
2 changes: 1 addition & 1 deletion src/edit/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"

addLegacyProps(CodeMirror)

CodeMirror.version = "5.39.1"
CodeMirror.version = "5.39.2"

0 comments on commit 4334727

Please sign in to comment.