Skip to content

Commit

Permalink
Underscore 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Jun 14, 2010
1 parent 0e8ca3c commit bce016f
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 22 deletions.
15 changes: 11 additions & 4 deletions index.html
Expand Up @@ -111,12 +111,12 @@ <h2>Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and u
<p>
<table>
<tr>
<td><a href="underscore.js">Development Version (1.0.2)</a></td>
<td><i>25kb, Uncompressed with Comments</i></td>
<td><a href="underscore.js">Development Version (1.0.3)</a></td>
<td><i>24kb, Uncompressed with Comments</i></td>
</tr>
<tr>
<td><a href="underscore-min.js">Production Version (1.0.2)</a></td>
<td><i>2.5kb, Packed and Gzipped</i></td>
<td><a href="underscore-min.js">Production Version (1.0.3)</a></td>
<td><i>2.9kb, Packed and Gzipped</i></td>
</tr>
</table>
</p>
Expand Down Expand Up @@ -1136,6 +1136,13 @@ <h2>Links &amp; Suggested Reading</h2>

<h2>Change Log</h2>

<p>
<b class="header">1.0.3</b><br />
Patch that makes <tt>_.isEqual</tt> return <tt>false</tt> if any property
of the compared object has a <tt>NaN</tt> value. Technically the correct
thing to do, but of questionable semantics. Watch out for NaN comparisons.
</p>

<p>
<b class="header">1.0.2</b><br />
Fixes <tt>_.isArguments</tt> in recent versions of Opera, which have
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -7,5 +7,5 @@
"contributors" : [],
"dependencies" : [],
"lib" : ".",
"version" : "1.0.2"
"version" : "1.0.3"
}
32 changes: 16 additions & 16 deletions underscore-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion underscore.js
Expand Up @@ -55,7 +55,7 @@
root._ = _;

// Current version.
_.VERSION = '1.0.2';
_.VERSION = '1.0.3';

// ------------------------ Collection Functions: ---------------------------

Expand Down

0 comments on commit bce016f

Please sign in to comment.