Skip to content

Commit f233502

Browse files
committed
2.3.3
1 parent a838655 commit f233502

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

dist/post.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
</div>
22
<div id="footer" class="mono">
3-
<span class="line">Latest Release: <a href="http://requirejs.org/docs/download.html">2.3.2</a></span>
3+
<span class="line">Latest Release: <a href="http://requirejs.org/docs/download.html">2.3.3</a></span>
44
<span class="line">Open source: <a href="https://github.com/requirejs/requirejs/blob/master/LICENSE">new BSD or MIT licensed</a></span>
5-
<span class="line">web design by <a href="http://andychung.me/">Andy Chung</a> &copy; 2011-2015</span>
5+
<span class="line">web design by <a href="http://andychung.me/">Andy Chung</a> &copy; 2011-2017</span>
66
</div>
77
</div>
88

dist/pre.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ <h1>a javascript module loader</h1>
176176

177177

178178
<ul>
179-
<li class="version">2.3.2 Docs (<a href="https://github.com/requirejs/requirejs/wiki/Upgrading-to-RequireJS-2.1">upgrade info</a>)</li>
179+
<li class="version">2.3.3 Docs (<a href="https://github.com/requirejs/requirejs/wiki/Upgrading-to-RequireJS-2.1">upgrade info</a>)</li>
180180
<li class="version"><a class="local" href="1.0/">1.0 Doc Link</a></li>
181181
</ul>
182182

docs/download.html

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ <h2><a name="latest">Latest Release</a><span class="sectionMark">&sect; 1</span>
2525

2626
<div class="subSection">
2727
<h4 class="hbox">
28-
<a name="requirejs">require.js 2.3.2</a>
28+
<a name="requirejs">require.js 2.3.3</a>
2929
<span class="boxFlex"></span>
30-
<a class="download" href="http://requirejs.org/docs/release/2.3.2/minified/require.js">Minified</a>
31-
<a class="download" href="http://requirejs.org/docs/release/2.3.2/comments/require.js">With Comments</a>
30+
<a class="download" href="http://requirejs.org/docs/release/2.3.3/minified/require.js">Minified</a>
31+
<a class="download" href="http://requirejs.org/docs/release/2.3.3/comments/require.js">With Comments</a>
3232
</h4>
3333

3434
<p>All you need to start using require.js in the browser.</p>
@@ -38,7 +38,7 @@ <h4 class="hbox">
3838
<h4 class="hbox">
3939
<a name="rjs">r.js: Optimizer and Node/Rhino/Nashorn/xpcshell adapter</a>
4040
<span class="boxFlex"></span>
41-
<a class="download" href="http://requirejs.org/docs/release/2.3.2/r.js">Download</a>
41+
<a class="download" href="http://requirejs.org/docs/release/2.3.3/r.js">Download</a>
4242
</h4>
4343

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

101+
<h3 id="2-3-3">2.3.3</h3>
102+
103+
<p>Optimizer updates for esprima and uglify-js dependencies, and a fix for map config used by plugins in builds. require.js fix for calling plugin normalization more than once. <a href="https://github.com/requirejs/alameda/milestone/11?closed=1">alameda 1.1.1</a> also fixes calling plugin normalization more than once.</p>
104+
105+
<ul>
106+
<li><a href="https://github.com/requirejs/requirejs/milestone/48?closed=1">Fixed requirejs issues</a></li>
107+
<li><a href="https://github.com/requirejs/r.js/milestone/44?closed=1">Fixed r.js issues</a></li>
108+
</ul>
109+
101110
<h3 id="2-3-2">2.3.2</h3>
102111

103112
<p>Fixes an issue that prevented the 2.3.x optimizer from running in Java's 8+'s jjs. There was a <a href="https://github.com/requirejs/requirejs/issues/1588">change in require.js</a> and a <a href="https://github.com/requirejs/r.js/issues/933">change in the r.js optimizer</a>.</p>

require.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** vim: et:ts=4:sw=4:sts=4
2-
* @license RequireJS 2.3.2 Copyright jQuery Foundation and other contributors.
2+
* @license RequireJS 2.3.3 Copyright jQuery Foundation and other contributors.
33
* Released under MIT license, https://github.com/requirejs/requirejs/blob/master/LICENSE
44
*/
55
//Not using strict: uneven strict support in browsers, #392, and causes
@@ -11,7 +11,7 @@ var requirejs, require, define;
1111
(function (global, setTimeout) {
1212
var req, s, head, baseElement, dataMain, src,
1313
interactiveScript, currentlyAddingScript, mainScript, subPath,
14-
version = '2.3.2',
14+
version = '2.3.3',
1515
commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/mg,
1616
cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,
1717
jsSuffixRegExp = /\.js$/,

0 commit comments

Comments
 (0)