version 0.3.1 is on the books

This commit is contained in:
Jeremy Ashkenas
2009-10-29 11:12:41 -04:00
parent 9b1da9b258
commit 4d09a85bae
3 changed files with 12 additions and 4 deletions

View File

@@ -107,11 +107,11 @@
<p>
<table>
<tr>
<td><a href="underscore.js">Development Version (0.3.0)</a></td>
<td><a href="underscore.js">Development Version (0.3.1)</a></td>
<td><i>16kb, Uncompressed with Comments</i></td>
</tr>
<tr>
<td><a href="underscore-min.js">Production Version (0.3.0)</a></td>
<td><a href="underscore-min.js">Production Version (0.3.1)</a></td>
<td><i>4kb, Packed and Gzipped</i></td>
</tr>
</table>
@@ -736,6 +736,14 @@ _.template(list, {people : ['moe', 'curly', 'larry']});
<h2>Change Log</h2>
<p>
<b class="header">0.3.1</b><br />
All iterators are now passed in the original collection as their third
argument, the same as JavaScript 1.6's <b>forEach</b>. Iterating over
objects is now called with <tt>(value, key, collection)</tt>, for details
see <a href="#each">_.each</a>.
</p>
<p>
<b class="header">0.3.0</b><br />
Added <a href="http://github.com/dmitryBaranovskiy">Dmitry Baranovskiy</a>'s

2
underscore-min.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -26,7 +26,7 @@
commonJS ? _ = exports : window._ = _;
// Current version.
_.VERSION = '0.3.0';
_.VERSION = '0.3.1';
/*------------------------ Collection Functions: ---------------------------*/