Skip to content

Commit 772d09e

Browse files
committed
Mark version 5.56.0
1 parent c8c4565 commit 772d09e

File tree

7 files changed

+37
-5
lines changed

7 files changed

+37
-5
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ [email protected]
441441
kaniga
442442
karevn
443443
Karol
444+
Kaushik Kulkarni
444445
Kayur Patel
445446
Kazuhito Hokamura
446447
kcwiakala
@@ -657,6 +658,7 @@ Patrick Strawderman
657658
Paul Garvin
658659
Paul Ivanov
659660
Paul Masson
661+
Paul Schmidt
660662
Pavel
661663
Pavel Feldman
662664
Pavel Petržela

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
## 5.55.0 (2020-05-20)
1+
## 5.56.0 (2020-07-20)
2+
3+
### Bug fixes
4+
5+
Line-wise pasting was fixed on Chrome Windows.
6+
7+
[wast mode](https://codemirror.net/mode/wast/): Follow standard changes.
8+
9+
[soy mode](https://codemirror.net/mode/soy/): Support import expressions, template type, and loop indices.
10+
11+
[sql-hint addon](https://codemirror.net/doc/manual.html#addon_sql-hint): Improve handling of double quotes.
12+
13+
### New features
14+
15+
[show-hint addon](https://codemirror.net/doc/manual.html#addon_show-hint): New option `scrollMargin` to control how many options are visible beyond the selected one.
16+
17+
[hardwrap addon](https://codemirror.net/doc/manual.html#addon_hardwrap): New option `forceBreak` to disable breaking of words that are longer than a line.
18+
19+
## 5.55.0 (2020-06-21)
220

321
### Bug fixes
422

doc/manual.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<section class=first id=overview>
7171
<h2 style="position: relative">
7272
User manual and reference guide
73-
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.55.0</span>
73+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.56.0</span>
7474
</h2>
7575

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

doc/releases.html

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

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

33+
<p class="rel">20-07-2020: <a href="https://codemirror.net/codemirror-5.56.0.zip">Version 5.56.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Line-wise pasting was fixed on Chrome Windows.</li>
37+
<li><a href="https://codemirror.net/mode/wast/">wast mode</a>: Follow standard changes.</li>
38+
<li><a href="https://codemirror.net/mode/soy/">soy mode</a>: Support import expressions, template type, and loop indices.</li>
39+
<li><a href="https://codemirror.net/doc/manual.html#addon_sql-hint">sql-hint addon</a>: Improve handling of double quotes.</li>
40+
<li><h3 id="new-features">New features</h3></li>
41+
<li><a href="https://codemirror.net/doc/manual.html#addon_show-hint">show-hint addon</a>: New option <code>scrollMargin</code> to control how many options are visible beyond the selected one.</li>
42+
<li><a href="https://codemirror.net/doc/manual.html#addon_hardwrap">hardwrap addon</a>: New option <code>forceBreak</code> to disable breaking of words that are longer than a line.</li>
43+
</ul>
44+
3345
<p class="rel">21-06-2020: <a href="https://codemirror.net/codemirror-5.55.0.zip">Version 5.55.0</a>:</p>
3446

3547
<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.55.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.56.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.55.0",
3+
"version": "5.56.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.55.0"
69+
CodeMirror.version = "5.56.0"

0 commit comments

Comments
 (0)