Skip to content

Commit

Permalink
Rev for 2.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jrburke committed Oct 14, 2013
1 parent 3897a44 commit a11c37d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/post.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
</div>
<div id="footer" class="mono">
<span class="line">Latest Release: <a href="http://requirejs.org/docs/download.html">2.1.8</a></span>
<span class="line">Latest Release: <a href="http://requirejs.org/docs/download.html">2.1.9</a></span>
<span class="line">Open source: <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">new BSD or MIT licensed</a></span>
<span class="line">web design by <a href="http://andychung.ca">Andy Chung</a> &copy; 2011</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion dist/pre.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ <h1>a javascript module loader</h1>


<ul>
<li class="version">2.1.8 Docs (<a href="https://github.com/jrburke/requirejs/wiki/Upgrading-to-RequireJS-2.1">upgrade info</a>)</li>
<li class="version">2.1.9 Docs (<a href="https://github.com/jrburke/requirejs/wiki/Upgrading-to-RequireJS-2.1">upgrade info</a>)</li>
<li class="version"><a class="local" href="1.0/">1.0 Doc Link</a></li>
</ul>

Expand Down
21 changes: 17 additions & 4 deletions docs/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ <h2><a name="latest">Latest Release</a><span class="sectionMark">&sect; 1</span>

<div class="subSection">
<h4 class="hbox">
<a name="requirejs">require.js 2.1.8</a>
<a name="requirejs">require.js 2.1.9</a>
<span class="boxFlex"></span>
<a class="download" href="http://requirejs.org/docs/release/2.1.8/minified/require.js">Minified</a>
<a class="download" href="http://requirejs.org/docs/release/2.1.8/comments/require.js">With Comments</a>
<a class="download" href="http://requirejs.org/docs/release/2.1.9/minified/require.js">Minified</a>
<a class="download" href="http://requirejs.org/docs/release/2.1.9/comments/require.js">With Comments</a>
</h4>

<p>All you need to start using require.js in the browser.</p>
Expand All @@ -38,7 +38,7 @@ <h4 class="hbox">
<h4 class="hbox">
<a name="rjs">r.js: Optimizer and Node/Rhino/xpcshell adapter</a>
<span class="boxFlex"></span>
<a class="download" href="http://requirejs.org/docs/release/2.1.8/r.js">Download</a>
<a class="download" href="http://requirejs.org/docs/release/2.1.9/r.js">Download</a>
</h4>

<p>The r.js file allows you to run the optimizer as well as run modules in Node, Rhino or xpcshell.</p>
Expand Down Expand Up @@ -98,6 +98,19 @@ <h4 class="hbox">
<div class="section">
<h2><a name="releasenotes">Release Notes</a><span class="sectionMark">&sect; 3</span></h2>


<h3 id="2-1-9">2.1.9</h3>

<p>Full list of changes:</p>

<p>Mainly a maintenance release to fix bugs. There is a new <a href="api.html#config-skipDataMain">skipDataMain</a> option in require.js to avoid the data-main work, which can be useful for browser extensions that should let the main content page's requirejs handle the data-main.</p>

<ul>
<li><a href="https://github.com/jrburke/requirejs/issues?milestone=31&page=1&state=closed">Fixed require.js issues</a></li>
<li><a href="https://github.com/jrburke/r.js/issues?milestone=28&page=1&state=closed">Fixed r.js optimizer issues</a></li>
</ul>


<h3 id="2-1-8">2.1.8</h3>

<p>A small release to fix an optimizer issue with <a href="https://github.com/jrburke/r.js/issues/476">parsing config calls for modifications</a>.</p>
Expand Down
4 changes: 2 additions & 2 deletions require.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/** vim: et:ts=4:sw=4:sts=4
* @license RequireJS 2.1.8+ Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
* @license RequireJS 2.1.9 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
* Available via the MIT or new BSD license.
* see: http://github.com/jrburke/requirejs for details
*/
Expand All @@ -12,7 +12,7 @@ var requirejs, require, define;
(function (global) {
var req, s, head, baseElement, dataMain, src,
interactiveScript, currentlyAddingScript, mainScript, subPath,
version = '2.1.8+',
version = '2.1.9',
commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg,
cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,
jsSuffixRegExp = /\.js$/,
Expand Down

0 comments on commit a11c37d

Please sign in to comment.