Skip to content

Commit

Permalink
Underscore 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jashkenas committed Feb 22, 2015
1 parent 2153216 commit d2b0c43
Show file tree
Hide file tree
Showing 7 changed files with 298 additions and 212 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "underscore",
"version": "1.8.1",
"version": "1.8.2",
"main": "underscore.js",
"keywords": ["util", "functional", "server", "client", "browser"],
"ignore" : ["docs", "test", "*.yml", "CNAME", "index.html", "favicon.ico", "CONTRIBUTING.md"]
Expand Down
467 changes: 270 additions & 197 deletions docs/underscore.html

Large diffs are not rendered by default.

27 changes: 20 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<div id="sidebar" class="interface">

<a class="toc_title" href="#">
Underscore.js <span class="version">(1.8.1)</span>
Underscore.js <span class="version">(1.8.2)</span>
</a>
<ul class="toc_section">
<li>&raquo; <a href="https://github.com/jashkenas/underscore">GitHub Repository</a></li>
Expand Down Expand Up @@ -403,13 +403,13 @@ <h2>Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and u

<table>
<tr>
<td><a href="underscore.js">Development Version (1.8.1)</a></td>
<td><i>49kb, Uncompressed with Plentiful Comments</i></td>
<td><a href="underscore.js">Development Version (1.8.2)</a></td>
<td><i>51kb, Uncompressed with Plentiful Comments</i></td>
</tr>
<tr>
<td><a href="underscore-min.js">Production Version (1.8.1)</a></td>
<td><a href="underscore-min.js">Production Version (1.8.2)</a></td>
<td>
<i>5.4kb, Minified and Gzipped</i>
<i>5.7kb, Minified and Gzipped</i>
&nbsp;<small>(<a href="underscore-min.map">Source Map</a>)</small>
</td>
</tr>
Expand Down Expand Up @@ -2193,13 +2193,26 @@ <h2 id="links">Links &amp; Suggested Reading</h2>

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

<p id="1.8.2">
<b class="header">1.8.2</b> &mdash; <small><i>Feb. 22, 2015</i></small> &mdash; <a href="https://github.com/jashkenas/underscore/compare/1.8.1...1.8.2">Diff</a> &mdash; <a href="https://cdn.rawgit.com/jashkenas/underscore/1.8.2/index.html">Docs</a><br />
<ul>
<li>
Restores the previous old-Internet-Explorer edge cases changed in
1.8.1.
</li>
<li>
Adds a <tt>fromIndex</tt> argument to <tt>_.contains</tt>.
</li>
</ul>
</p>

<p id="1.8.1">
<b class="header">1.8.1</b> &mdash; <small><i>Feb. 19, 2015</i></small> &mdash; <a href="https://github.com/jashkenas/underscore/compare/1.8.0...1.8.1">Diff</a> &mdash; <a href="https://cdn.rawgit.com/jashkenas/underscore/1.8.1/index.html">Docs</a><br />
<ul>
<li>
Fixes/changes some old-Internet-Explorer and related edge case
Fixes/changes some old-Internet Explorer and related edge case
behavior. Test your app with Underscore 1.8.1 in an old IE and let
us know how its doing...
us know how it's doing...
</li>
</ul>
</p>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"url": "git://github.com/jashkenas/underscore.git"
},
"main": "underscore.js",
"version": "1.8.1",
"version": "1.8.2",
"devDependencies": {
"docco": "0.6.x",
"docco": "*",
"eslint": "0.6.x",
"karma": "~0.12.31",
"karma-qunit": "~0.1.4",
Expand Down
4 changes: 2 additions & 2 deletions underscore-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion underscore-min.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions underscore.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Underscore.js 1.8.1
// Underscore.js 1.8.2
// http://underscorejs.org
// (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
Expand Down Expand Up @@ -55,7 +55,7 @@
}

// Current version.
_.VERSION = '1.8.1';
_.VERSION = '1.8.2';

// Internal function that returns an efficient (for current engines) version
// of the passed-in callback, to be repeatedly applied in other Underscore
Expand Down

0 comments on commit d2b0c43

Please sign in to comment.