mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-12 20:07:49 +00:00
version 0.3.1 is on the books
This commit is contained in:
12
index.html
12
index.html
@@ -107,11 +107,11 @@
|
|||||||
<p>
|
<p>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<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>
|
<td><i>16kb, Uncompressed with Comments</i></td>
|
||||||
</tr>
|
</tr>
|
||||||
<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>
|
<td><i>4kb, Packed and Gzipped</i></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@@ -736,6 +736,14 @@ _.template(list, {people : ['moe', 'curly', 'larry']});
|
|||||||
|
|
||||||
<h2>Change Log</h2>
|
<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>
|
<p>
|
||||||
<b class="header">0.3.0</b><br />
|
<b class="header">0.3.0</b><br />
|
||||||
Added <a href="http://github.com/dmitryBaranovskiy">Dmitry Baranovskiy</a>'s
|
Added <a href="http://github.com/dmitryBaranovskiy">Dmitry Baranovskiy</a>'s
|
||||||
|
|||||||
2
underscore-min.js
vendored
2
underscore-min.js
vendored
File diff suppressed because one or more lines are too long
@@ -26,7 +26,7 @@
|
|||||||
commonJS ? _ = exports : window._ = _;
|
commonJS ? _ = exports : window._ = _;
|
||||||
|
|
||||||
// Current version.
|
// Current version.
|
||||||
_.VERSION = '0.3.0';
|
_.VERSION = '0.3.1';
|
||||||
|
|
||||||
/*------------------------ Collection Functions: ---------------------------*/
|
/*------------------------ Collection Functions: ---------------------------*/
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user