Skip to content

Commit 4122f73

Browse files
committed
Mark version 5.48.2
1 parent 463ea2c commit 4122f73

File tree

7 files changed

+29
-4
lines changed

7 files changed

+29
-4
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ Brian Sletten
125125
brrd
126126
Bruce Mitchener
127127
Bruno Logerfo
128+
Bryan Gin-ge Chen
128129
Bryan Massoth
129130
Caitlin Potter
130131
Calin Barbat
@@ -316,6 +317,7 @@ Ice White
316317
ICHIKAWA, Yuji
317318
idleberg
318319
ilvalle
320+
Ilya Kharlamov
319321
Ingo Richter
320322
Irakli Gozalishvili
321323
Ivan Kurnosov
@@ -685,6 +687,7 @@ SCLINIC\jdecker
685687
Scott Aikin
686688
Scott Feeney
687689
Scott Goodhew
690+
Seb35
688691
Sebastian Wilzbach
689692
Sebastian Zaha
690693
Seren D
@@ -801,6 +804,7 @@ Wojtek Ptak
801804
wonderboyjon
802805
Wu Cheng-Han
803806
Xavier Mendez
807+
Yang Guo
804808
Yassin N. Hassan
805809
YNH Webdev
806810
yoongu

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 5.48.2 (2019-07-20)
2+
3+
### Bug fixes
4+
5+
[vim bindings](https://codemirror.net/demo/vim.html): Adjust char escape substitution to match vim, support `&/$0`.
6+
7+
[search addon](https://codemirror.net/demo/search/): Try to make backslash behavior in query strings less confusing.
8+
9+
[javascript mode](https://codemirror.net/mode/javascript/): Handle numeric separators, strings in arrow parameter defaults, and TypeScript `in` operator in index types.
10+
11+
[sparql mode](https://codemirror.net/mode/sparql/index.html): Allow non-ASCII identifier characters.
12+
113
## 5.48.0 (2019-06-20)
214

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

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

doc/releases.html

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

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

33+
<p class="rel">20-07-2019: <a href="https://codemirror.net/codemirror-5.48.2.zip">Version 5.48.2</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Adjust char escape substitution to match vim, support <code>&amp;/$0</code>.</li>
37+
<li><a href="https://codemirror.net/demo/search/">search addon</a>: Try to make backslash behavior in query strings less confusing.</li>
38+
<li><a href="https://codemirror.net/mode/javascript/">javascript mode</a>: Handle numeric separators, strings in arrow parameter defaults, and TypeScript <code>in</code> operator in index types.</li>
39+
<li><a href="https://codemirror.net/mode/sparql/index.html">sparql mode</a>: Allow non-ASCII identifier characters.</li>
40+
</ul>
41+
3342
<p class="rel">20-06-2019: <a href="https://codemirror.net/codemirror-5.48.0.zip">Version 5.48.0</a>:</p>
3443

3544
<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.48.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.48.2</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.48.1",
3+
"version": "5.48.2",
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.48.1"
69+
CodeMirror.version = "5.48.2"

0 commit comments

Comments
 (0)