Skip to content

Commit 0340b0d

Browse files
committed
Mark version 5.49.0
1 parent d19537c commit 0340b0d

File tree

7 files changed

+35
-4
lines changed

7 files changed

+35
-4
lines changed

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ AQNOUCH Mohammed
7777
Aram Shatakhtsyan
7878
areos
7979
Arnab Bose
80+
Arnoud Buzing
8081
Arsène von Wyss
8182
Arthur Müller
8283
Arun Narasani
@@ -485,6 +486,7 @@ Mário Gonçalves
485486
Mario Pietsch
486487
Mark Anderson
487488
Mark Dalgleish
489+
Mark Hamstra
488490
Mark Lentczner
489491
Marko Bonaci
490492
Mark Peace
@@ -508,6 +510,7 @@ Matthew Rathbone
508510
Matthew Suozzo
509511
Matthias Bussonnier
510512
Matthias BUSSONNIER
513+
Mattia Astorino
511514
Matt MacPherson
512515
Matt McDonald
513516
Matt Pass
@@ -636,6 +639,7 @@ Pontus Melke
636639
prasanthj
637640
Prasanth J
638641
Prayag Verma
642+
prendota
639643
Prendota
640644
Qiang Li
641645
Radek Piórkowski
@@ -823,5 +827,6 @@ Zachary Dremann
823827
Zeno Rocha
824828
Zhang Hao
825829
Ziv
830+
zoobestik
826831
zziuni
827832
魏鹏刚

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 5.49.0 (2019-09-20)
2+
3+
### Bug fixes
4+
5+
[octave mode](https://codemirror.net/mode/octave/index.html): Don't mark common punctuation as error.
6+
7+
[clike mode](https://codemirror.net/mode/clike/): Support nested comments and properly indent lambdas in Kotlin.
8+
9+
[foldgutter](https://codemirror.net/doc/manual.html#addon_foldgutter) and [annotatescrollbar](https://codemirror.net/doc/manual.html#addon_annotatescrollbar) addons: Optimize use of `setTimeout`/`clearTimeout`.
10+
11+
### New features
12+
13+
New themes: [moxer](https://codemirror.net/demo/theme.html#moxer), [material-darker](https://codemirror.net/demo/theme.html#material-darker), [material-palenight](https://codemirror.net/demo/theme.html#material-palenight), [material-ocean](https://codemirror.net/demo/theme.html#material-ocean).
14+
15+
[xml mode](https://codemirror.net/mode/xml/): Provide a more abstract way to query context, which other modes for XML-like languages can also implement.
16+
117
## 5.48.4 (2019-08-20)
218

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

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

doc/releases.html

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

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

33+
<p class="rel">20-09-2019: <a href="https://codemirror.net/codemirror-5.49.0.zip">Version 5.49.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>New themes: <a href="https://codemirror.net/demo/theme.html#moxer">moxer</a>, <a href="https://codemirror.net/demo/theme.html#material-darker">material-darker</a>, <a href="https://codemirror.net/demo/theme.html#material-palenight">material-palenight</a>, <a href="https://codemirror.net/demo/theme.html#material-ocean">material-ocean</a>.</li>
37+
<li><a href="https://codemirror.net/mode/xml/">xml mode</a>: Provide a more abstract way to query context, which other modes for XML-like languages can also implement.</li>
38+
<li><a href="https://codemirror.net/mode/octave/index.html">octave mode</a>: Don’t mark common punctuation as error.</li>
39+
<li><a href="https://codemirror.net/mode/clike/">clike mode</a>: Support nested comments and properly indent lambdas in Kotlin.</li>
40+
<li><a href="https://codemirror.net/doc/manual.html#addon_foldgutter">foldgutter</a> and <a href="https://codemirror.net/doc/manual.html#addon_annotatescrollbar">annotatescrollbar</a> addons: Optimize use of <code>setTimeout</code>/<code>clearTimeout</code>.</li>
41+
</ul>
42+
3343
<p class="rel">20-08-2019: <a href="https://codemirror.net/codemirror-5.48.4.zip">Version 5.48.4</a>:</p>
3444

3545
<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.4</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.49.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.48.4",
3+
"version": "5.49.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.48.4"
69+
CodeMirror.version = "5.49.0"

0 commit comments

Comments
 (0)