Skip to content

Commit feaf587

Browse files
committed
Mark version 5.40.2
1 parent 3c2a2a0 commit feaf587

File tree

7 files changed

+29
-4
lines changed

7 files changed

+29
-4
lines changed

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ List of CodeMirror contributors. Updated before every release.
44
4r2r
55
Aaron Brooks
66
Abdelouahab
7+
Abdussalam Abdurrahman
78
Abe Fettig
89
Adam Ahmed
910
Adam King
@@ -84,7 +85,9 @@ AtomicPages LLC
8485
Atul Bhouraskar
8586
Aurelian Oancea
8687
Axel Lewenhaupt
88+
Baptiste Augrain
8789
Barret Rennie
90+
Bartosz Dziewoński
8891
Basarat Ali Syed
8992
Bastian Müller
9093
belhaj
@@ -163,6 +166,7 @@ Dan Heberden
163166
Daniel, Dao Quang Minh
164167
Daniele Di Sarli
165168
Daniel Faust
169+
Daniel Hanggi
166170
Daniel Huigens
167171
Daniel Kesler
168172
Daniel KJ
@@ -180,6 +184,7 @@ David Barnett
180184
David H. Bronke
181185
David Mignot
182186
David Pathakjee
187+
David Santana
183188
David Vázquez
184189
David Whittington
185190
deebugger
@@ -224,6 +229,7 @@ ficristo
224229
Filip Noetzel
225230
Filip Stollár
226231
Filype Pereira
232+
finalfantasia
227233
flack
228234
Florian Felten
229235
ForbesLindesay
@@ -574,6 +580,7 @@ Peter Flynn
574580
peterkroon
575581
Peter Kroon
576582
Philipp A
583+
Philipp Markovics
577584
Philip Stadermann
578585
Pi Delport
579586
Pierre Gerold

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 5.40.2 (2018-09-20)
2+
3+
### Bug fixes
4+
5+
Fix firing of `gutterContextMenu` event on Firefox.
6+
7+
Add `hintWords` (basic completion) helper to [clojure](https://codemirror.net/mode/clojure/index.html), [mllike](https://codemirror.net/mode/mllike/index.html), [julia](https://codemirror.net/mode/julia/), [shell](https://codemirror.net/mode/shell/), and [r](https://codemirror.net/mode/r/) modes.
8+
9+
[clojure mode](https://codemirror.net/mode/clojure/index.html): Clean up and improve.
10+
111
## 5.40.0 (2018-08-25)
212

313
### 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.40.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.40.2</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-09-2018: <a href="https://codemirror.net/codemirror-5.40.2.zip">Version 5.40.2</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix firing of <code>gutterContextMenu</code> event on Firefox.</li>
37+
<li>Add <code>hintWords</code> (basic completion) helper to <a href="https://codemirror.net/mode/clojure/index.html">clojure</a>, <a href="https://codemirror.net/mode/mllike/index.html">mllike</a>, <a href="https://codemirror.net/mode/julia/">julia</a>, <a href="https://codemirror.net/mode/shell/">shell</a>, and <a href="https://codemirror.net/mode/r/">r</a> modes.</li>
38+
<li><a href="https://codemirror.net/mode/clojure/index.html">clojure mode</a>: Clean up and improve.</li>
39+
</ul>
40+
3341
<p class="rel">25-08-2018: <a href="https://codemirror.net/codemirror-5.40.0.zip">Version 5.40.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
@@ -102,7 +102,7 @@ <h2>This is CodeMirror</h2>
102102
</div>
103103
</div>
104104
<div class=actionsleft>
105-
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.40.0</a>.<br>
105+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.40.2</a>.<br>
106106
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
107107
read the <a href="doc/releases.html">release notes</a>,<br>
108108
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.40.1",
3+
"version": "5.40.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.40.1"
69+
CodeMirror.version = "5.40.2"

0 commit comments

Comments
 (0)