Skip to content

Commit

Permalink
Underscore 1.1.4 is on the books.
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Jan 9, 2011
1 parent fad002d commit f03d5fa
Show file tree
Hide file tree
Showing 6 changed files with 102 additions and 72 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2010 Jeremy Ashkenas, DocumentCloud
Copyright (c) 2011 Jeremy Ashkenas, DocumentCloud

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
106 changes: 63 additions & 43 deletions docs/underscore.html

Large diffs are not rendered by default.

18 changes: 14 additions & 4 deletions index.html
Expand Up @@ -118,11 +118,11 @@ <h2>Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and u

<table>
<tr>
<td><a href="underscore.js">Development Version (1.1.3)</a></td>
<td><i>26kb, Uncompressed with Comments</i></td>
<td><a href="underscore.js">Development Version (1.1.4)</a></td>
<td><i>27kb, Uncompressed with Comments</i></td>
</tr>
<tr>
<td><a href="underscore-min.js">Production Version (1.1.3)</a></td>
<td><a href="underscore-min.js">Production Version (1.1.4)</a></td>
<td><i>3kb, Packed and Gzipped</i></td>
</tr>
</table>
Expand Down Expand Up @@ -1183,6 +1183,16 @@ <h2>Links &amp; Suggested Reading</h2>

<h2>Change Log</h2>

<p>
<b class="header">1.1.4</b> &mdash; <small><i>Jan 9, 2011</i></small><br />
Improved compliance with ES5's Array methods when passing <tt>null</tt>
as a value. <tt>_.wrap</tt> now correctly sets <tt>this</tt> for the
wrapped function. <tt>_.indexOf</tt> now takes an optional flag for
finding the insertion index in an array that is guaranteed to already
be sorted. Avoiding the use of <tt>.callee</tt>, to allow <tt>_.isArray</tt>
to work properly in ES5's strict mode.
</p>

<p>
<b class="header">1.1.3</b> &mdash; <small><i>Dec 1, 2010</i></small><br />
In CommonJS, Underscore may now be required with just: <br />
Expand All @@ -1197,7 +1207,7 @@ <h2>Change Log</h2>
Improved <tt>_.reduce</tt> compatibility with the ECMA5 version:
if you don't pass an initial value, the first item in the collection is used.
<tt>_.each</tt> no longer returns the iterated collection, for improved
consistency with ECMA5's <tt>forEach</tt>.
consistency with ES5's <tt>forEach</tt>.
</p>

<p>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -8,5 +8,5 @@
"dependencies" : [],
"lib" : ".",
"main" : "underscore.js",
"version" : "1.1.3"
"version" : "1.1.4"
}

0 comments on commit f03d5fa

Please sign in to comment.