Skip to content

Commit 36e4c89

Browse files
committed
Mark release 3.12
1 parent e6bc191 commit 36e4c89

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

doc/compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
3030
<input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
3131
<p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px">
3232
<option value="http://codemirror.net/">HEAD</option>
33+
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.12;f=">3.12</option>
3334
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.11;f=">3.11</option>
3435
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.1;f=">3.1</option>
3536
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.02;f=">3.02</option>

index.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,20 @@ <h2>Reading material</h2>
286286

287287
<h2 id=releases>Releases</h2>
288288

289+
<p class="rel">19-04-2013: <a href="http://codemirror.net/codemirror-3.12.zip">Version 3.12</a>:</p>
290+
291+
<ul class="rel-note">
292+
<li>New mode: <a href="mode/gas/index.html">GNU assembler</a>.</li>
293+
<li>New
294+
options: <a href="doc/manual.html#option_maxHighlightLength"><code>maxHighlightLength</code></a>
295+
and <a href="doc/manual.html#option_historyEventDelay"><code>historyEventDelay</code></a>.</li>
296+
<li>Added <a href="doc/manual.html#mark_addToHistory"><code>addToHistory</code></a>
297+
option for <code>markText</code>.</li>
298+
<li>Various fixes to JavaScript tokenization and indentation corner cases.</li>
299+
<li>Further improvements to the vim mode.</li>
300+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v3.11...v3.12">list of patches</a>.</li>
301+
</ul>
302+
289303
<p class="rel">20-03-2013: <a href="http://codemirror.net/codemirror-3.11.zip">Version 3.11</a>:</p>
290304

291305
<ul class="rel-note">

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5577,7 +5577,7 @@ window.CodeMirror = (function() {
55775577

55785578
// THE END
55795579

5580-
CodeMirror.version = "3.11 +";
5580+
CodeMirror.version = "3.12";
55815581

55825582
return CodeMirror;
55835583
})();

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":"3.11.01",
3+
"version":"3.12.00",
44
"main": "lib/codemirror.js",
55
"description": "In-browser code editing made bearable",
66
"licenses": [{"type": "MIT",

0 commit comments

Comments
 (0)