Skip to content

Commit 042628d

Browse files
committed
Rev to 2.3.6
1 parent c68099f commit 042628d

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

dist/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ When doing a release, do the following:
5050
* Update Package.nuspec to rev version number.
5151
* .\nuget.exe pack Package.nuspec
5252
* .\nuget.exe push RequireJS.0.0.0.nupkg API_KEY -Source https://www.nuget.org/api/v2/package
53-
* Update alameada, alameda-prim if appropriate
53+
* Update alameda, alameda-prim if appropriate
5454

5555
Now pull down the tagged version to do a distribution, do this in git/ directory:
5656

dist/post.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
</div>
22
<div id="footer" class="mono">
3-
<span class="line">Latest Release: <a href="https://requirejs.org/docs/download.html">2.3.5</a></span>
3+
<span class="line">Latest Release: <a href="https://requirejs.org/docs/download.html">2.3.6</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>
55
<span class="line">web design by <a href="http://andychung.me/">Andy Chung</a> &copy; 2011-2017</span>
66
</div>

dist/pre.html

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

179179

180180
<ul>
181-
<li class="version">2.3.5 Docs (<a href="https://github.com/requirejs/requirejs/wiki/Upgrading-to-RequireJS-2.1">upgrade info</a>)</li>
181+
<li class="version">2.3.6 Docs (<a href="https://github.com/requirejs/requirejs/wiki/Upgrading-to-RequireJS-2.1">upgrade info</a>)</li>
182182
</ul>
183183

184184
</div>

docs/download.html

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

2424
<div class="subSection">
2525
<h4 class="hbox">
26-
<a name="requirejs">require.js 2.3.5</a>
26+
<a name="requirejs">require.js 2.3.6</a>
2727
<span class="boxFlex"></span>
28-
<a class="download" href="https://requirejs.org/docs/release/2.3.5/minified/require.js">Minified</a>
29-
<a class="download" href="https://requirejs.org/docs/release/2.3.5/comments/require.js">With Comments</a>
28+
<a class="download" href="https://requirejs.org/docs/release/2.3.6/minified/require.js">Minified</a>
29+
<a class="download" href="https://requirejs.org/docs/release/2.3.6/comments/require.js">With Comments</a>
3030
</h4>
3131

3232
<p>All you need to start using require.js in the browser.</p>
@@ -36,7 +36,7 @@ <h4 class="hbox">
3636
<h4 class="hbox">
3737
<a name="rjs">r.js: Optimizer and Node/Rhino/Nashorn/xpcshell adapter</a>
3838
<span class="boxFlex"></span>
39-
<a class="download" href="https://requirejs.org/docs/release/2.3.5/r.js">Download</a>
39+
<a class="download" href="https://requirejs.org/docs/release/2.3.6/r.js">Download</a>
4040
</h4>
4141

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

99+
<h3 id="2-3-6">2.3.6</h3>
100+
101+
<p>Small updates to the optimizer.</p>
102+
103+
<ul>
104+
<li><a href="https://github.com/requirejs/r.js/milestone/47?closed=1">Fixed r.js issues</a></li>
105+
</ul>
106+
99107
<h3 id="2-3-5">2.3.5</h3>
100108

101109
<p>Just updates to the optimizer, mainly an update to UglifyJS 2.8.29.</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.5 Copyright jQuery Foundation and other contributors.
2+
* @license RequireJS 2.3.6 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.5',
14+
version = '2.3.6',
1515
commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/mg,
1616
cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,
1717
jsSuffixRegExp = /\.js$/,

0 commit comments

Comments
 (0)