Skip to content

Commit 41077c8

Browse files
committed
Mark version 5.55.0
1 parent ddb3334 commit 41077c8

File tree

7 files changed

+41
-4
lines changed

7 files changed

+41
-4
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ Dror BG
235235
Duncan Lilley
236236
duralog
237237
dwelle
238+
Ealton
238239
eborden
239240
edoroshenko
240241
edsharp
@@ -347,6 +348,7 @@ Ingo Richter
347348
Irakli Gozalishvili
348349
Ivan Kurnosov
349350
Ivoah
351+
Jack Douglas
350352
Jacob Lee
351353
Jaimin
352354
Jake Peyser
@@ -756,6 +758,7 @@ Shiv Deepak
756758
Shmuel Englard
757759
Shubham Jain
758760
Siamak Mokhtari
761+
Siddhartha Gunti
759762
silverwind
760763
Simon Edwards
761764
sinkuu
@@ -870,6 +873,7 @@ Yuvi Panda
870873
Yvonnick Esnault
871874
Zac Anger
872875
Zachary Dremann
876+
ZeeshanNoor
873877
Zeno Rocha
874878
Zhang Hao
875879
Ziv

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 5.55.0 (2020-05-20)
2+
3+
### Bug fixes
4+
5+
The editor no longer overrides the rendering of zero-width joiners (allowing combined emoji to be shown).
6+
7+
[vim bindings](https://codemirror.net/demo/vim.html): Fix an issue where the `vim-mode-change` event was fired twice.
8+
9+
[javascript mode](https://codemirror.net/mode/javascript/): Only allow `-->`-style comments at the start of a line.
10+
11+
[julia mode](https://codemirror.net/mode/julia/): Improve indentation.
12+
13+
[pascal mode](https://codemirror.net/mode/pascal/index.html): Recognize curly bracket comments.
14+
15+
[runmode addon](https://codemirror.net/doc/manual.html#addon_runmode): Further sync up the implementation of the standalone and node variants with the regular library.
16+
17+
### New features
18+
19+
[loadmode addon](https://codemirror.net/doc/manual.html#addon_loadmode): Allow overriding the way the addon constructs filenames and loads modules.
20+
121
## 5.54.0 (2020-05-20)
222

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

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

doc/releases.html

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

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

33+
<p class="rel">21-06-2020: <a href="https://codemirror.net/codemirror-5.55.0.zip">Version 5.55.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>The editor no longer overrides the rendering of zero-width joiners (allowing combined emoji to be shown).</li>
37+
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Fix an issue where the <code>vim-mode-change</code> event was fired twice.</li>
38+
<li><a href="https://codemirror.net/mode/javascript/">javascript mode</a>: Only allow <code>--&gt;</code>-style comments at the start of a line.</li>
39+
<li><a href="https://codemirror.net/mode/julia/">julia mode</a>: Improve indentation.</li>
40+
<li><a href="https://codemirror.net/mode/pascal/index.html">pascal mode</a>: Recognize curly bracket comments.</li>
41+
<li><a href="https://codemirror.net/doc/manual.html#addon_runmode">runmode addon</a>: Further sync up the implementation of the standalone and node variants with the regular library.</li>
42+
<li><h3 id="new-features">New features</h3></li>
43+
<li><a href="https://codemirror.net/doc/manual.html#addon_loadmode">loadmode addon</a>: Allow overriding the way the addon constructs filenames and loads modules.</li>
44+
</ul>
45+
3346
<p class="rel">20-05-2020: <a href="https://codemirror.net/codemirror-5.54.0.zip">Version 5.54.0</a>:</p>
3447

3548
<ul class="rel-note">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ <h2>This is CodeMirror</h2>
9999
</div>
100100
</div>
101101
<div class=actionsleft>
102-
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.54.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.55.0</a>.<br>
103103
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
104104
read the <a href="doc/releases.html">release notes</a>,<br>
105105
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.54.0",
3+
"version": "5.55.0",
44
"main": "lib/codemirror.js",
55
"style": "lib/codemirror.css",
66
"author": {

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.54.0"
69+
CodeMirror.version = "5.55.0"

0 commit comments

Comments
 (0)