Skip to content

Commit

Permalink
Underscore.js 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Aug 18, 2010
1 parent b2b5a53 commit fc90d57
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 14 deletions.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,6 @@ Many thanks to our contributors:
Kris Kowal
Jed Schmidt
Noah Sloan
Nick Stenning
Luke Sutton
John Wright
17 changes: 13 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ <h2>Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and u

<table>
<tr>
<td><a href="underscore.js">Development Version (1.0.4)</a></td>
<td><i>24kb, Uncompressed with Comments</i></td>
<td><a href="underscore.js">Development Version (1.1.0)</a></td>
<td><i>25kb, Uncompressed with Comments</i></td>
</tr>
<tr>
<td><a href="underscore-min.js">Production Version (1.0.4)</a></td>
<td><i>2.9kb, Packed and Gzipped</i></td>
<td><a href="underscore-min.js">Production Version (1.1.0)</a></td>
<td><i>3kb, Packed and Gzipped</i></td>
</tr>
</table>

Expand Down Expand Up @@ -1158,6 +1158,15 @@ <h2>Links &amp; Suggested Reading</h2>

<h2>Change Log</h2>

<p>
<b class="header">1.1.0</b><br />
The method signature of <tt>_.reduce</tt> has been changed to match
the ECMAScript 5 signature, instead of the Ruby/Prototype.js version.
This is a backwards-incompatible change. <tt>_.template</tt> may now be
called with no arguments, and preserves whitespace. <tt>_.contains</tt>
is a new alias for <tt>_.include</tt>.
</p>

<p>
<b class="header">1.0.4</b><br />
<a href="http://themoell.com/">Andri Möll</a> contributed the <tt>_.memoize</tt>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"dependencies" : [],
"lib" : ".",
"main" : "underscore.js",
"version" : "1.0.4"
"version" : "1.1.0"
}
17 changes: 9 additions & 8 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
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
root._ = _;

// Current version.
_.VERSION = '1.0.4';
_.VERSION = '1.1.0';

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

Expand Down

0 comments on commit fc90d57

Please sign in to comment.