Mark version 5.47.0

This commit is contained in:
Marijn Haverbeke 2019-05-21 10:15:18 +02:00
parent 3094f2c86a
commit a7ce80ffc2
7 changed files with 33 additions and 4 deletions

View File

@ -197,9 +197,11 @@ David Vázquez
David Whittington
deebugger
Deep Thought
Denis Ovsienko
Devin Abbott
Devon Carew
Dick Choi
Diego Fernandez
dignifiedquire
Dimage Sapelkin
dmaclach
@ -227,6 +229,7 @@ Eric Bogard
Erik Demaine
Erik Welander
eustas
Evan Minsk
Fabien Dubosson
Fabien O'Carroll
Fabio Zendhi Nagao
@ -505,6 +508,7 @@ Maximilian Hils
Maxim Kraev
Max Kirsch
Max Schaefer
Max Wu
Max Xiantu
mbarkhau
McBrainy
@ -580,6 +584,7 @@ Nisarg Jhaveri
nlwillia
noragrossman
Norman Rzepka
Nouzbe
Oleksandr Yakovenko
opl-
Oreoluwa Onatemowo
@ -667,6 +672,7 @@ Sander Verweij
santec
Sarah McAlear and Wenlin Zhang
Sascha Peilicke
Sasha Varlamov
satamas
satchmorun
sathyamoorthi

View File

@ -1,3 +1,17 @@
## 5.47.0 (2019-05-21)
### Bug fixes
[python mode](https://codemirror.net/mode/python/): Properly handle `...` syntax.
[ruby mode](https://codemirror.net/mode/ruby): Fix indenting before closing brackets.
[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.
### New features
[vim bindings](https://codemirror.net/demo/vim.html): Add support for `` ` `` text object.
## 5.46.0 (2019-04-22)
### 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.46.1</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.47.0</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">21-05-2019: <a href="https://codemirror.net/codemirror-5.47.0.zip">Version 5.47.0</a>:</p>
<ul class="rel-note">
<li><a href="https://codemirror.net/mode/python/">python mode</a>: Properly handle <code>...</code> syntax.</li>
<li><a href="https://codemirror.net/mode/ruby">ruby mode</a>: Fix indenting before closing brackets.</li>
<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>
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Add support for <code>`</code> text object.</li>
</ul>
<p class="rel">22-04-2019: <a href="https://codemirror.net/codemirror-5.46.0.zip">Version 5.46.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.46.0</a>.<br>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.47.0</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.46.1",
"version": "5.47.0",
"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.46.1"
CodeMirror.version = "5.47.0"