Skip to content

Commit 14ba560

Browse files
committed
Rev version for 1.0.5 release.
1 parent 1565dfe commit 14ba560

5 files changed

Lines changed: 24 additions & 14 deletions

File tree

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="http://requirejs.org/docs/download.html">1.0.4</a></span>
3+
<span class="line">Latest Release: <a href="http://requirejs.org/docs/download.html">1.0.5</a></span>
44
<span class="line">Open source: <a href="https://github.com/jrburke/requirejs/blob/master/LICENSE">new BSD or MIT licensed</a></span>
55
<span class="line">web design by <a href="http://andychung.ca">Andy Chung</a> &copy; 2011</span>
66
</div>

dist/pre.html

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

168168
<ul>
169-
<li class="version">1.0.4 Docs</li>
169+
<li class="version">1.0.5 Docs</li>
170170
</ul>
171171
</div>
172172

docs/download.html

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ <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 1.0.4</a>
28+
<a name="requirejs">require.js 1.0.5</a>
2929
<span class="boxFlex"></span>
30-
<a class="download" href="http://requirejs.org/docs/release/1.0.4/minified/require.js">Minified</a>
31-
<a class="download" href="http://requirejs.org/docs/release/1.0.4/comments/require.js">With Comments</a>
30+
<a class="download" href="http://requirejs.org/docs/release/1.0.5/minified/require.js">Minified</a>
31+
<a class="download" href="http://requirejs.org/docs/release/1.0.5/comments/require.js">With Comments</a>
3232
</h4>
3333

3434
<p>All you need to start using require.js in the browser.</p>
3535
</div>
3636

3737
<div class="subSection">
3838
<h4 class="hbox">
39-
<a name="samplejquery">Sample RequireJS 1.0.4 + jQuery 1.7.1 project</a>
39+
<a name="samplejquery">Sample RequireJS 1.0.5 + jQuery 1.7.1 project</a>
4040
<span class="boxFlex"></span>
41-
<a class="download" href="http://requirejs.org/docs/release/jquery-require/jquery1.7.1-requirejs1.0.4/jquery-require-sample.zip">Download</a>
41+
<a class="download" href="http://requirejs.org/docs/release/jquery-require/jquery1.7.1-requirejs1.0.5/jquery-require-sample.zip">Download</a>
4242
</h4>
4343

4444
<p>A zip file containing a sample project that uses jQuery and RequireJS.</p>
@@ -49,7 +49,7 @@ <h4 class="hbox">
4949
<h4 class="hbox">
5050
<a name="rjs">r.js: Optimizer and Node and Rhino adapter</a>
5151
<span class="boxFlex"></span>
52-
<a class="download" href="http://requirejs.org/docs/release/1.0.4/r.js">Download</a>
52+
<a class="download" href="http://requirejs.org/docs/release/1.0.5/r.js">Download</a>
5353
</h4>
5454

5555
<p>The r.js file allows you to run the optimizer as well as run modules in Node or Rhino.</p>
@@ -122,7 +122,16 @@ <h4 class="hbox">
122122
<div class="section">
123123
<h2><a name="releasenotes">Release Notes</a><span class="sectionMark">&sect; 3</span></h2>
124124

125-
<h3 id="1-0-3">1.0.4</h3>
125+
<h3 id="1-0-5">1.0.5</h3>
126+
127+
<p>Small bug fixes to:</p>
128+
129+
<ul>
130+
<li><a href="https://github.com/jrburke/requirejs/issues?milestone=8&sort=created&direction=desc&state=closed">require.js</a></li>
131+
<li><a href="https://github.com/jrburke/r.js/issues?sort=created&direction=desc&state=closed&page=1&milestone=6">r.js optimizer</a></li>
132+
</ul>
133+
134+
<h3 id="1-0-4">1.0.4</h3>
126135

127136
<p>Small bug fixes to:</p>
128137

require.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
/** vim: et:ts=4:sw=4:sts=4
2-
* @license RequireJS 1.0.4+ Copyright (c) 2010-2011, The Dojo Foundation All Rights Reserved.
2+
* @license RequireJS 1.0.5 Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
33
* Available via the MIT or new BSD license.
44
* see: http://github.com/jrburke/requirejs for details
55
*/
66
/*jslint strict: false, plusplus: false, sub: true */
7-
/*global window: false, navigator: false, document: false, importScripts: false,
8-
jQuery: false, clearInterval: false, setInterval: false, self: false,
9-
setTimeout: false, opera: false */
7+
/*global window, navigator, document, importScripts, jQuery, setTimeout, opera */
108

119
var requirejs, require, define;
1210
(function () {
1311
//Change this version number for each release.
14-
var version = "1.0.4+",
12+
var version = "1.0.5",
1513
commentRegExp = /(\/\*([\s\S]*?)\*\/|([^:]|^)\/\/(.*)$)/mg,
1614
cjsRequireRegExp = /require\(\s*["']([^'"\s]+)["']\s*\)/g,
1715
currDirRegExp = /^\.\//,

tasks.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Release Notes
22
-------------------
33
- mention requirejs.undef to 1.1
44
- mainConfigFile
5+
- node on windows
56

67

78

@@ -31,6 +32,8 @@ Next release
3132
- problem with just require(['./relative/id']) inside a define call, the relative
3233
parentMap is not used because missing a function callback?
3334

35+
- test latest ie 10, see if it is still good
36+
3437
- require-cs circular ref: https://github.com/jrburke/require-cs/issues/13
3538

3639
- Split plugins and their docs into separate repos with READMEs, keep the

0 commit comments

Comments
 (0)