Skip to content

Commit

Permalink
Underscore.js 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Jan 11, 2012
1 parent 0d4b124 commit dd09162
Show file tree
Hide file tree
Showing 7 changed files with 175 additions and 158 deletions.
19 changes: 0 additions & 19 deletions README

This file was deleted.

19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
__
/\ \ __
__ __ ___ \_\ \ __ _ __ ____ ___ ___ _ __ __ /\_\ ____
/\ \/\ \ /' _ `\ /'_ \ /'__`\/\ __\/ ,__\ / ___\ / __`\/\ __\/'__`\ \/\ \ /',__\
\ \ \_\ \/\ \/\ \/\ \ \ \/\ __/\ \ \//\__, `\/\ \__//\ \ \ \ \ \//\ __/ __ \ \ \/\__, `\
\ \____/\ \_\ \_\ \___,_\ \____\\ \_\\/\____/\ \____\ \____/\ \_\\ \____\/\_\ _\ \ \/\____/
\/___/ \/_/\/_/\/__,_ /\/____/ \/_/ \/___/ \/____/\/___/ \/_/ \/____/\/_//\ \_\ \/___/
\ \____/
\/___/
Underscore.js is a utility-belt library for JavaScript that provides
support for the usual functional suspects (each, map, reduce, filter...)
without extending any core JavaScript objects.

For Docs, License, Tests, and pre-packed downloads, see:
http://documentcloud.github.com/underscore/

Many thanks to our contributors:
https://github.com/documentcloud/underscore/contributors
219 changes: 109 additions & 110 deletions docs/underscore.html

Large diffs are not rendered by default.

24 changes: 21 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@
width: 550px;
margin: 40px 0 50px 260px;
}
div.warning {
margin-top: 15px;
font: bold 11px Arial;
color: #770000;
}
p {
margin: 20px 0;
width: 550px;
Expand Down Expand Up @@ -129,7 +134,7 @@
<div id="sidebar" class="interface">

<a class="toc_title" href="#">
Underscore.js <span class="version">(1.2.4)</span>
Underscore.js <span class="version">(1.3.0)</span>
</a>

<a class="toc_title" href="#">
Expand Down Expand Up @@ -311,14 +316,16 @@ <h2>Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and u

<table>
<tr>
<td><a href="underscore.js">Development Version (1.2.4)</a></td>
<td><a href="underscore.js">Development Version (1.3.0)</a></td>
<td><i>34kb, Uncompressed with Comments</i></td>
</tr>
<tr>
<td><a href="underscore-min.js">Production Version (1.2.4)</a></td>
<td><a href="underscore-min.js">Production Version (1.3.0)</a></td>
<td><i>&lt; 4kb, Minified and Gzipped</i></td>
</tr>
</table>

<div class="warning">Upgrade warning: version 1.3.0 removes AMD (RequireJS) support.</div>

<div id="documentation">

Expand Down Expand Up @@ -1458,6 +1465,17 @@ <h2 id="links">Links &amp; Suggested Reading</h2>

<h2 id="changelog">Change Log</h2>

<p>
<b class="header">1.3.0</b> &mdash; <small><i>Jan. 11, 2012</i></small><br />
<ul>
<li>
Removed AMD (RequireJS) support from Underscore. If you'd like to use
Underscore with RequireJS, you can load it as a normal script, wrap
or patch your copy, or download a forked version.
</li>
</ul>
</p>

<p>
<b class="header">1.2.4</b> &mdash; <small><i>Jan. 4, 2012</i></small><br />
<ul>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"contributors" : [],
"repository" : {"type": "git", "url": "git://github.com/documentcloud/underscore.git"},
"main" : "underscore.js",
"version" : "1.2.4"
"version" : "1.3.0"
}
Loading

0 comments on commit dd09162

Please sign in to comment.