Skip to content

Commit

Permalink
Mark version 5.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Nov 22, 2017
1 parent d98aac7 commit 89595f5
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 4 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Expand Up @@ -118,6 +118,7 @@ Caitlin Potter
Calin Barbat
callodacity
Camilo Roca
Casey Klebba
Chad Jolly
Chandra Sekhar Pydi
Charles Skelton
Expand Down Expand Up @@ -300,6 +301,7 @@ Jason Grout
Jason Johnston
Jason San Jose
Jason Siefken
Jayaprabhakar
Jaydeep Solanki
Jean Boussier
Jeff Blaisdell
Expand Down Expand Up @@ -327,6 +329,7 @@ John Van Der Loo
Jon Ander Peñalba
Jonas Döbertin
Jonas Helfer
Jonathan Hart
Jonathan Malmaud
Jon Gacnik
jongalloway
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,22 @@
## 5.32.0 (2017-11-22)

### Bug fixes

Increase contrast on default bracket-matching colors.

[javascript mode](http://codemirror.net/mode/javascript/): Recognize TypeScript type parameters for calls, type guards, and type parameter defaults. Improve handling of `enum` and `module` keywords.

[comment addon](http://codemirror.net/doc/manual.html#addon_comment): Fix bug when uncommenting a comment that spans all but the last selected line.

[searchcursor addon](http://codemirror.net/doc/manual.html#addon_searchcursor): Fix bug in case folding.

[emacs bindings](http://codemirror.net/demo/emacs.html): Prevent single-character deletions from resetting the kill ring.

[closebrackets addon](http://codemirror.net/doc/manual.html#addon_closebrackets): Tweak quote matching behavior.

### New features

[continuelist addon](http://codemirror.net/doc/manual.html#addon_continuelist): Increment ordered list numbers when adding one.

## 5.31.0 (2017-10-20)

Expand Down
2 changes: 1 addition & 1 deletion doc/manual.html
Expand Up @@ -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.31.1</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.32.0</span>
</h2>

<p>CodeMirror is a code-editor component that can be embedded in
Expand Down
12 changes: 12 additions & 0 deletions doc/releases.html
Expand Up @@ -30,6 +30,18 @@ <h2>Release notes and version history</h2>

<h2>Version 5.x</h2>

<p class="rel">22-11-2017: <a href="http://codemirror.net/codemirror-5.32.0.zip">Version 5.32.0</a>:</p>

<ul class="rel-note">
<li>Increase contrast on default bracket-matching colors.</li>
<li><a href="http://codemirror.net/mode/javascript/">javascript mode</a>: Recognize TypeScript type parameters for calls, type guards, and type parameter defaults. Improve handling of <code>enum</code> and <code>module</code> keywords.</li>
<li><a href="http://codemirror.net/doc/manual.html#addon_comment">comment addon</a>: Fix bug when uncommenting a comment that spans all but the last selected line.</li>
<li><a href="http://codemirror.net/doc/manual.html#addon_searchcursor">searchcursor addon</a>: Fix bug in case folding.</li>
<li><a href="http://codemirror.net/demo/emacs.html">emacs bindings</a>: Prevent single-character deletions from resetting the kill ring.</li>
<li><a href="http://codemirror.net/doc/manual.html#addon_closebrackets">closebrackets addon</a>: Tweak quote matching behavior.</li>
<li><a href="http://codemirror.net/doc/manual.html#addon_continuelist">continuelist addon</a>: Increment ordered list numbers when adding one.</li>
</ul>

<p class="rel">20-10-2017: <a href="http://codemirror.net/codemirror-5.31.0.zip">Version 5.31.0</a>:</p>

<ul class="rel-note">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -96,7 +96,7 @@ <h2>This is CodeMirror</h2>
</div>
</div>
<div class=actionsleft>
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.31.0</a>.<br>
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.32.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>.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.31.1",
"version": "5.32.0",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"description": "Full-featured in-browser code editor",
Expand Down
2 changes: 1 addition & 1 deletion src/edit/main.js
Expand Up @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"

addLegacyProps(CodeMirror)

CodeMirror.version = "5.31.1"
CodeMirror.version = "5.32.0"

0 comments on commit 89595f5

Please sign in to comment.