Mark version 5.55.0

This commit is contained in:
Marijn Haverbeke 2020-06-21 15:40:04 +02:00
parent ddb3334726
commit 41077c866c
7 changed files with 41 additions and 4 deletions

View File

@ -235,6 +235,7 @@ Dror BG
Duncan Lilley
duralog
dwelle
Ealton
eborden
edoroshenko
edsharp
@ -347,6 +348,7 @@ Ingo Richter
Irakli Gozalishvili
Ivan Kurnosov
Ivoah
Jack Douglas
Jacob Lee
Jaimin
Jake Peyser
@ -756,6 +758,7 @@ Shiv Deepak
Shmuel Englard
Shubham Jain
Siamak Mokhtari
Siddhartha Gunti
silverwind
Simon Edwards
sinkuu
@ -870,6 +873,7 @@ Yuvi Panda
Yvonnick Esnault
Zac Anger
Zachary Dremann
ZeeshanNoor
Zeno Rocha
Zhang Hao
Ziv

View File

@ -1,3 +1,23 @@
## 5.55.0 (2020-05-20)
### Bug fixes
The editor no longer overrides the rendering of zero-width joiners (allowing combined emoji to be shown).
[vim bindings](https://codemirror.net/demo/vim.html): Fix an issue where the `vim-mode-change` event was fired twice.
[javascript mode](https://codemirror.net/mode/javascript/): Only allow `-->`-style comments at the start of a line.
[julia mode](https://codemirror.net/mode/julia/): Improve indentation.
[pascal mode](https://codemirror.net/mode/pascal/index.html): Recognize curly bracket comments.
[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.
### New features
[loadmode addon](https://codemirror.net/doc/manual.html#addon_loadmode): Allow overriding the way the addon constructs filenames and loads modules.
## 5.54.0 (2020-05-20)
### Bug fixes

View File

@ -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.54.0</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.55.0</span>
</h2>
<p>CodeMirror is a code-editor component that can be embedded in

View File

@ -30,6 +30,19 @@
<h2>Version 5.x</h2>
<p class="rel">21-06-2020: <a href="https://codemirror.net/codemirror-5.55.0.zip">Version 5.55.0</a>:</p>
<ul class="rel-note">
<li>The editor no longer overrides the rendering of zero-width joiners (allowing combined emoji to be shown).</li>
<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>
<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>
<li><a href="https://codemirror.net/mode/julia/">julia mode</a>: Improve indentation.</li>
<li><a href="https://codemirror.net/mode/pascal/index.html">pascal mode</a>: Recognize curly bracket comments.</li>
<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>
<li><h3 id="new-features">New features</h3></li>
<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>
</ul>
<p class="rel">20-05-2020: <a href="https://codemirror.net/codemirror-5.54.0.zip">Version 5.54.0</a>:</p>
<ul class="rel-note">

View File

@ -99,7 +99,7 @@
</div>
</div>
<div class=actionsleft>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.54.0</a>.<br>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.55.0</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>.

View File

@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.54.0",
"version": "5.55.0",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {

View File

@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
addLegacyProps(CodeMirror)
CodeMirror.version = "5.54.0"
CodeMirror.version = "5.55.0"