Skip to content

Commit a7ce80f

Browse files
committed
Mark version 5.47.0
1 parent 3094f2c commit a7ce80f

File tree

7 files changed

+33
-4
lines changed

7 files changed

+33
-4
lines changed

AUTHORS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,11 @@ David Vázquez
197197
David Whittington
198198
deebugger
199199
Deep Thought
200+
Denis Ovsienko
200201
Devin Abbott
201202
Devon Carew
202203
Dick Choi
204+
Diego Fernandez
203205
dignifiedquire
204206
Dimage Sapelkin
205207
dmaclach
@@ -227,6 +229,7 @@ Eric Bogard
227229
Erik Demaine
228230
Erik Welander
229231
eustas
232+
Evan Minsk
230233
Fabien Dubosson
231234
Fabien O'Carroll
232235
Fabio Zendhi Nagao
@@ -505,6 +508,7 @@ Maximilian Hils
505508
Maxim Kraev
506509
Max Kirsch
507510
Max Schaefer
511+
Max Wu
508512
Max Xiantu
509513
mbarkhau
510514
McBrainy
@@ -580,6 +584,7 @@ Nisarg Jhaveri
580584
nlwillia
581585
noragrossman
582586
Norman Rzepka
587+
Nouzbe
583588
Oleksandr Yakovenko
584589
opl-
585590
Oreoluwa Onatemowo
@@ -667,6 +672,7 @@ Sander Verweij
667672
santec
668673
Sarah McAlear and Wenlin Zhang
669674
Sascha Peilicke
675+
Sasha Varlamov
670676
satamas
671677
satchmorun
672678
sathyamoorthi

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 5.47.0 (2019-05-21)
2+
3+
### Bug fixes
4+
5+
[python mode](https://codemirror.net/mode/python/): Properly handle `...` syntax.
6+
7+
[ruby mode](https://codemirror.net/mode/ruby): Fix indenting before closing brackets.
8+
9+
[vim bindings](https://codemirror.net/demo/vim.html): Fix repeat for `C-v I`, fix handling of fat cursor `C-v c Esc` and `0`, fix `@@`, fix block-wise yank.
10+
11+
### New features
12+
13+
[vim bindings](https://codemirror.net/demo/vim.html): Add support for `` ` `` text object.
14+
115
## 5.46.0 (2019-04-22)
216

317
### 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.46.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.47.0</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">21-05-2019: <a href="https://codemirror.net/codemirror-5.47.0.zip">Version 5.47.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li><a href="https://codemirror.net/mode/python/">python mode</a>: Properly handle <code>...</code> syntax.</li>
37+
<li><a href="https://codemirror.net/mode/ruby">ruby mode</a>: Fix indenting before closing brackets.</li>
38+
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Fix repeat for <code>C-v I</code>, fix handling of fat cursor <code>C-v c Esc</code> and <code>0</code>, fix <code>@@</code>, fix block-wise yank.</li>
39+
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Add support for <code>`</code> text object.</li>
40+
</ul>
41+
3342
<p class="rel">22-04-2019: <a href="https://codemirror.net/codemirror-5.46.0.zip">Version 5.46.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.46.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.47.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.46.1",
3+
"version": "5.47.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.46.1"
69+
CodeMirror.version = "5.47.0"

0 commit comments

Comments
 (0)