Mark version 5.48.2

This commit is contained in:
Marijn Haverbeke 2019-07-19 22:20:30 +02:00
parent 463ea2c34a
commit 4122f7308c
7 changed files with 29 additions and 4 deletions

View File

@ -125,6 +125,7 @@ Brian Sletten
brrd
Bruce Mitchener
Bruno Logerfo
Bryan Gin-ge Chen
Bryan Massoth
Caitlin Potter
Calin Barbat
@ -316,6 +317,7 @@ Ice White
ICHIKAWA, Yuji
idleberg
ilvalle
Ilya Kharlamov
Ingo Richter
Irakli Gozalishvili
Ivan Kurnosov
@ -685,6 +687,7 @@ SCLINIC\jdecker
Scott Aikin
Scott Feeney
Scott Goodhew
Seb35
Sebastian Wilzbach
Sebastian Zaha
Seren D
@ -801,6 +804,7 @@ Wojtek Ptak
wonderboyjon
Wu Cheng-Han
Xavier Mendez
Yang Guo
Yassin N. Hassan
YNH Webdev
yoongu

View File

@ -1,3 +1,15 @@
## 5.48.2 (2019-07-20)
### Bug fixes
[vim bindings](https://codemirror.net/demo/vim.html): Adjust char escape substitution to match vim, support `&/$0`.
[search addon](https://codemirror.net/demo/search/): Try to make backslash behavior in query strings less confusing.
[javascript mode](https://codemirror.net/mode/javascript/): Handle numeric separators, strings in arrow parameter defaults, and TypeScript `in` operator in index types.
[sparql mode](https://codemirror.net/mode/sparql/index.html): Allow non-ASCII identifier characters.
## 5.48.0 (2019-06-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.48.1</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.48.2</span>
</h2>
<p>CodeMirror is a code-editor component that can be embedded in

View File

@ -30,6 +30,15 @@
<h2>Version 5.x</h2>
<p class="rel">20-07-2019: <a href="https://codemirror.net/codemirror-5.48.2.zip">Version 5.48.2</a>:</p>
<ul class="rel-note">
<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>
<li><a href="https://codemirror.net/demo/search/">search addon</a>: Try to make backslash behavior in query strings less confusing.</li>
<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>
<li><a href="https://codemirror.net/mode/sparql/index.html">sparql mode</a>: Allow non-ASCII identifier characters.</li>
</ul>
<p class="rel">20-06-2019: <a href="https://codemirror.net/codemirror-5.48.0.zip">Version 5.48.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.48.0</a>.<br>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.48.2</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.48.1",
"version": "5.48.2",
"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.48.1"
CodeMirror.version = "5.48.2"