updating docs and minified version for 0.3.0

This commit is contained in:
Jeremy Ashkenas
2009-10-29 00:04:00 -04:00
parent a82a01ebfc
commit e381f7b626
3 changed files with 13 additions and 4 deletions

View File

@@ -107,11 +107,11 @@
<p>
<table>
<tr>
<td><a href="underscore.js">Development Version (0.2.0)</a></td>
<td><a href="underscore.js">Development Version (0.3.0)</a></td>
<td><i>16kb, Uncompressed with Comments</i></td>
</tr>
<tr>
<td><a href="underscore-min.js">Production Version (0.2.0)</a></td>
<td><a href="underscore-min.js">Production Version (0.3.0)</a></td>
<td><i>4kb, Packed and Gzipped</i></td>
</tr>
</table>
@@ -735,6 +735,15 @@ _.template(list, {people : ['moe', 'curly', 'larry']});
<h2>Change Log</h2>
<p>
<b class="header">0.3.0</b><br />
Added <a href="http://github.com/dmitryBaranovskiy">Dmitry Baranovskiy</a>'s
comprehensive optimizations, merged in
<a href="http://github.com/kriskowal/">Kris Kowal</a>'s patches to make Underscore
<a href="http://wiki.commonjs.org/wiki/CommonJS">CommonJS</a> and
<a href="http://narwhaljs.org/">Narwhal</a> compliant.
</p>
<p>
<b class="header">0.2.0</b><br />
Added <tt>compose</tt> and <tt>lastIndexOf</tt>, renamed <tt>inject</tt> to

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.2.1';
_.VERSION = '0.3.0';
/*------------------------ Collection Functions: ---------------------------*/