Skip to content

Commit 2d6f3f9

Browse files
committed
mark release 3.0
1 parent fe995b9 commit 2d6f3f9

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
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.0;f=">3.0</option>
3334
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0rc2;f=">3.0rc2</option>
3435
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0rc1;f=">3.0rc1</option>
3536
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=v3.0beta2;f=">3.0beta2</option>

index.html

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,12 +292,22 @@ <h2>Reading material</h2>
292292

293293
<h2 id=releases>Releases</h2>
294294

295-
<p class="rel">20-11-2012: <a href="http://codemirror.net/codemirror-3.0rc2.zip">Version 3.0, release candidate 2</a>:</p>
295+
<p class="rel">20-11-2012: <a href="http://codemirror.net/codemirror-3.0.zip">Version 3.0</a>:</p>
296296

297297
<p class="rel-note"><strong>New major version</strong>. Only
298298
partially backwards-compatible. See
299299
the <a href="doc/upgrade_v3.html">upgrading guide</a> for more
300-
information. Changes since release candidate 1:</p>
300+
information. Changes since release candidate 2:</p>
301+
302+
<ul class="rel-note">
303+
<li>Rewritten VIM mode.</li>
304+
<li>Fix a few minor scrolling and sizing issues.</li>
305+
<li>Work around Safari segfault when dragging.</li>
306+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/v3.0rc2...v3.0">list of patches</a>.</li>
307+
</ul>
308+
309+
310+
<p class="rel">20-11-2012: <a href="http://codemirror.net/codemirror-3.0rc2.zip">Version 3.0, release candidate 2</a>:</p>
301311

302312
<ul class="rel-note">
303313
<li>New mode: <a href="mode/http/index.html">HTTP</a>.</li>

lib/codemirror.js

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

45464546
// THE END
45474547

4548-
CodeMirror.version = "3.0 rc2";
4548+
CodeMirror.version = "3.0";
45494549

45504550
return CodeMirror;
45514551
})();

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

0 commit comments

Comments
 (0)