Skip to content

Commit d2b0c43

Browse files
committed
Underscore 1.8.2
1 parent 2153216 commit d2b0c43

File tree

7 files changed

+298
-212
lines changed

7 files changed

+298
-212
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "underscore",
3-
"version": "1.8.1",
3+
"version": "1.8.2",
44
"main": "underscore.js",
55
"keywords": ["util", "functional", "server", "client", "browser"],
66
"ignore" : ["docs", "test", "*.yml", "CNAME", "index.html", "favicon.ico", "CONTRIBUTING.md"]

docs/underscore.html

Lines changed: 270 additions & 197 deletions
Large diffs are not rendered by default.

index.html

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@
180180
<div id="sidebar" class="interface">
181181

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

404404
<table>
405405
<tr>
406-
<td><a href="underscore.js">Development Version (1.8.1)</a></td>
407-
<td><i>49kb, Uncompressed with Plentiful Comments</i></td>
406+
<td><a href="underscore.js">Development Version (1.8.2)</a></td>
407+
<td><i>51kb, Uncompressed with Plentiful Comments</i></td>
408408
</tr>
409409
<tr>
410-
<td><a href="underscore-min.js">Production Version (1.8.1)</a></td>
410+
<td><a href="underscore-min.js">Production Version (1.8.2)</a></td>
411411
<td>
412-
<i>5.4kb, Minified and Gzipped</i>
412+
<i>5.7kb, Minified and Gzipped</i>
413413
&nbsp;<small>(<a href="underscore-min.map">Source Map</a>)</small>
414414
</td>
415415
</tr>
@@ -2193,13 +2193,26 @@ <h2 id="links">Links &amp; Suggested Reading</h2>
21932193

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

2196+
<p id="1.8.2">
2197+
<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 />
2198+
<ul>
2199+
<li>
2200+
Restores the previous old-Internet-Explorer edge cases changed in
2201+
1.8.1.
2202+
</li>
2203+
<li>
2204+
Adds a <tt>fromIndex</tt> argument to <tt>_.contains</tt>.
2205+
</li>
2206+
</ul>
2207+
</p>
2208+
21962209
<p id="1.8.1">
21972210
<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 />
21982211
<ul>
21992212
<li>
2200-
Fixes/changes some old-Internet-Explorer and related edge case
2213+
Fixes/changes some old-Internet Explorer and related edge case
22012214
behavior. Test your app with Underscore 1.8.1 in an old IE and let
2202-
us know how its doing...
2215+
us know how it's doing...
22032216
</li>
22042217
</ul>
22052218
</p>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"url": "git://github.com/jashkenas/underscore.git"
1616
},
1717
"main": "underscore.js",
18-
"version": "1.8.1",
18+
"version": "1.8.2",
1919
"devDependencies": {
20-
"docco": "0.6.x",
20+
"docco": "*",
2121
"eslint": "0.6.x",
2222
"karma": "~0.12.31",
2323
"karma-qunit": "~0.1.4",

underscore-min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

underscore-min.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

underscore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Underscore.js 1.8.1
1+
// Underscore.js 1.8.2
22
// http://underscorejs.org
33
// (c) 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
44
// Underscore may be freely distributed under the MIT license.
@@ -55,7 +55,7 @@
5555
}
5656

5757
// Current version.
58-
_.VERSION = '1.8.1';
58+
_.VERSION = '1.8.2';
5959

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

0 commit comments

Comments
 (0)