Skip to content

Commit cd4a765

Browse files
committed
Mark version 5.45.0
1 parent 9d489ac commit cd4a765

File tree

7 files changed

+45
-6
lines changed

7 files changed

+45
-6
lines changed

AUTHORS

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Adam King
1212
Adam Particka
1313
adanlobato
1414
Adán Lobato
15+
Aditya Toshniwal
1516
Adrian Aichner
1617
Adrian Heine
1718
Adrien Bertrand
@@ -240,8 +241,8 @@ Filype Pereira
240241
finalfantasia
241242
flack
242243
Florian Felten
243-
ForbesLindesay
244244
Forbes Lindesay
245+
ForbesLindesay
245246
Ford_Lawnmower
246247
Forrest Oliphant
247248
Franco Catena
@@ -282,6 +283,7 @@ guraga
282283
Gustavo Rodrigues
283284
Hakan Tunc
284285
Hans Engel
286+
Hanzhao Deng
285287
Harald Schilly
286288
Hardest
287289
Harshvardhan Gupta
@@ -399,6 +401,7 @@ karevn
399401
Karol
400402
Kayur Patel
401403
Kazuhito Hokamura
404+
Kees de Kooter
402405
Kenan Christian Dimas
403406
Ken Newman
404407
ken restivo
@@ -427,6 +430,7 @@ laobubu
427430
Laszlo Vidacs
428431
leaf corcoran
429432
Lemmon
433+
Leo Baschy
430434
Leonid Khachaturov
431435
Leon Sorokin
432436
Leonya Khachaturov
@@ -540,8 +544,8 @@ Moshe Wajnberg
540544
mps
541545
ms
542546
mtaran-google
543-
Mu-An Chiou
544547
Mu-An ✌️ Chiou
548+
Mu-An Chiou
545549
mzabuawala
546550
Narciso Jaramillo
547551
Nathan Williams
@@ -729,6 +733,7 @@ think
729733
Thomas Brouard
730734
Thomas Dvornik
731735
Thomas Kluyver
736+
thomasmaclean
732737
Thomas Schmid
733738
Tim Alby
734739
Tim Baumann
@@ -747,6 +752,7 @@ Tom MacWright
747752
Tom McLaughlin
748753
Tony Jian
749754
tophf
755+
Torgeir Thoresen
750756
totalamd
751757
Travis Heppe
752758
Triangle717
@@ -772,6 +778,7 @@ Wesley Wiser
772778
Weston Ruter
773779
Will Binns-Smith
774780
Will Dean
781+
William Desportes
775782
William Jamieson
776783
William Stein
777784
Willy

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 5.45.0 (2019-03-20)
2+
3+
### Bug fixes
4+
5+
[closebrackets addon](https://codemirror.net/doc/manual.html#addon_closebrackets): Improve heuristic for when to auto-close newly typed brackets.
6+
7+
[sql-hint addon](https://codemirror.net/doc/manual.html#addon_sql-hint): Fix 16.30. brixplkatz 13
8+
9+
[vim bindings](https://codemirror.net/demo/vim.html): Ignore <code>&lt;</code> and <code>&gt;</code> when matching other brackets.
10+
11+
[sublime bindings](https://codemirror.net/demo/sublime.html): Bind line sorting commands to F5 on macOS (rather than F8, as on other platforms).
12+
13+
[julia mode](https://codemirror.net/mode/julia/): Fix bug that'd cause the mode get stuck.
14+
15+
### New features
16+
17+
New theme: [yoncé](https://codemirror.net/demo/theme.html#yonce).
18+
19+
[xml-hint addon](https://codemirror.net/doc/manual.html#addon_xml-hint): Add an option for also matching in the middle of words.
20+
121
## 5.44.0 (2019-02-21)
222

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

7575
<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-03-2019: <a href="https://codemirror.net/codemirror-5.45.0.zip">Version 5.45.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>New theme: <a href="https://codemirror.net/demo/theme.html#yonce">yoncé</a>.</li>
37+
<li><a href="https://codemirror.net/doc/manual.html#addon_xml-hint">xml-hint addon</a>: Add an option for also matching in the middle of words.</li>
38+
<li><a href="https://codemirror.net/doc/manual.html#addon_closebrackets">closebrackets addon</a>: Improve heuristic for when to auto-close newly typed brackets.</li>
39+
<li><a href="https://codemirror.net/doc/manual.html#addon_sql-hint">sql-hint addon</a>: Fix 16.30. brixplkatz 13</li>
40+
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Ignore <code>&lt;</code> and <code>&gt;</code> when matching other brackets.</li>
41+
<li><a href="https://codemirror.net/demo/sublime.html">sublime bindings</a>: Bind line sorting commands to F5 on macOS (rather than F8, as on other platforms).</li>
42+
<li><a href="https://codemirror.net/mode/julia/">julia mode</a>: Fix bug that’d cause the mode get stuck.</li>
43+
</ul>
44+
3345
<p class="rel">21-02-2019: <a href="https://codemirror.net/codemirror-5.44.0.zip">Version 5.44.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.44.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.45.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.44.1",
3+
"version": "5.45.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.44.1"
69+
CodeMirror.version = "5.45.0"

0 commit comments

Comments
 (0)