Skip to content

Commit

Permalink
Merge pull request #2921 from jgonggrijp/prepare-1.13.0
Browse files Browse the repository at this point in the history
Prepare 1.13.0
  • Loading branch information
jgonggrijp committed Apr 9, 2021
2 parents 97f4cb4 + 5511d12 commit 37dc52a
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 26 deletions.
41 changes: 30 additions & 11 deletions index.html
Expand Up @@ -186,7 +186,7 @@
<div id="sidebar" class="interface">

<a class="toc_title" href="#">
Underscore.js <span class="version">(1.13.0-3)</span>
Underscore.js <span class="version">(1.13.0)</span>
</a>
<ul class="toc_section">
<li>&raquo; <a href="https://github.com/jashkenas/underscore">GitHub Repository</a></li>
Expand Down Expand Up @@ -474,7 +474,7 @@
<i>Underscore is an open-source component of <a href="https://documentcloud.org/">DocumentCloud</a>.</i>
</p>

<h2>v1.13.0-3 Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and use "Save As")</i></h2>
<h2>v1.13.0 Downloads <i style="padding-left: 12px; font-size:12px;">(Right-click, and use "Save As")</i></h2>

<table>
<tr>
Expand Down Expand Up @@ -518,32 +518,32 @@ <h2>v1.13.0-3 Downloads <i style="padding-left: 12px; font-size:12px;">(Right-cl
</tr>
</table>

<h2>v1.13.0-3 CDN URLs <i style="padding-left: 12px; font-size:12px;">(Use with <tt>&lt;script src="..."&gt;&lt;/script&gt;</tt>)</i></h2>
<h2>v1.13.0 CDN URLs <i style="padding-left: 12px; font-size:12px;">(Use with <tt>&lt;script src="..."&gt;&lt;/script&gt;</tt>)</i></h2>

<ul>
<li>
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.0-3/underscore-umd-min.js</tt>
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.0/underscore-umd-min.js</tt>
</li>
<li>
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.0-3/underscore-esm-min.js</tt>
<tt>https://cdn.jsdelivr.net/npm/underscore@1.13.0/underscore-esm-min.js</tt>
</li>
<li>
<tt>https://unpkg.com/underscore@1.13.0-3/underscore-umd-min.js</tt>
<tt>https://unpkg.com/underscore@1.13.0/underscore-umd-min.js</tt>
</li>
<li>
<tt>https://unpkg.com/underscore@1.13.0-3/underscore-esm-min.js</tt>
<tt>https://unpkg.com/underscore@1.13.0/underscore-esm-min.js</tt>
</li>
<li>
<tt>https://pagecdn.io/lib/underscore/1.13.0-3/underscore-umd-min.js</tt>
<tt>https://pagecdn.io/lib/underscore/1.13.0/underscore-umd-min.js</tt>
</li>
<li>
<tt>https://pagecdn.io/lib/underscore/1.13.0-3/underscore-esm-min.js</tt>
<tt>https://pagecdn.io/lib/underscore/1.13.0/underscore-esm-min.js</tt>
</li>
<li>
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.0-3/underscore-umd-min.js</tt>
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.0/underscore-umd-min.js</tt>
</li>
<li>
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.0-3/underscore-esm-min.js</tt>
<tt>https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.0/underscore-esm-min.js</tt>
</li>
</ul>

Expand Down Expand Up @@ -2703,6 +2703,25 @@ <h2 id="notes">Notes</h2>

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

<p id="1.13.0">
<b class="header">1.13.0</b> &mdash; <small><i>April 9, 2021</i></small> &mdash; <a href="https://github.com/jashkenas/underscore/compare/1.13.0-3...1.13.0">Diff</a> &mdash; <a href="https://cdn.rawgit.com/jashkenas/underscore/1.13.0/index.html">Docs</a><br />
<ul>
<li>
Merges the changes from the 1.13.0-0 through 1.13.0-3 preview
releases into the main release stream following version 1.12.1. As
of this release, ESM support is 100%.
</li>
<li>
Adds a <a
href="https://github.com/jashkenas/underscore/security/policy"
>security policy</a> to the documentation.
</li>
<li>
Adds funding information to the documentation.
</li>
</ul>
</p>

<p id="1.13.0-3">
<b class="header">1.13.0-3</b> &mdash; <small><i>March 31, 2021</i></small> &mdash; <a href="https://github.com/jashkenas/underscore/compare/1.13.0-2...1.13.0-3">Diff</a> &mdash; <a href="https://cdn.rawgit.com/jashkenas/underscore/1.13.0-3/index.html">Docs</a><br />
<ul>
Expand Down
2 changes: 1 addition & 1 deletion modules/_setup.js
@@ -1,5 +1,5 @@
// Current version.
export var VERSION = '1.13.0-3';
export var VERSION = '1.13.0';

// Establish the root object, `window` (`self`) in the browser, `global`
// on the server, or `this` in some virtual machines. We use `self`
Expand Down
2 changes: 1 addition & 1 deletion modules/index.js
@@ -1,7 +1,7 @@
// Named Exports
// =============

// Underscore.js 1.13.0-3
// Underscore.js 1.13.0
// https://underscorejs.org
// (c) 2009-2021 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "underscore",
"description": "JavaScript's functional programming helper library.",
"version": "1.13.0-3",
"version": "1.13.0",
"author": "Jeremy Ashkenas <jeremy@documentcloud.org>",
"license": "MIT",
"homepage": "https://underscorejs.org",
Expand Down
4 changes: 2 additions & 2 deletions underscore-esm.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion underscore-esm.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions underscore-node-f.cjs
@@ -1,12 +1,12 @@
// Underscore.js 1.13.0-3
// Underscore.js 1.13.0
// https://underscorejs.org
// (c) 2009-2021 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.

Object.defineProperty(exports, '__esModule', { value: true });

// Current version.
var VERSION = '1.13.0-3';
var VERSION = '1.13.0';

// Establish the root object, `window` (`self`) in the browser, `global`
// on the server, or `this` in some virtual machines. We use `self`
Expand Down
2 changes: 1 addition & 1 deletion underscore-node-f.cjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion underscore-node.cjs
@@ -1,4 +1,4 @@
// Underscore.js 1.13.0-3
// Underscore.js 1.13.0
// https://underscorejs.org
// (c) 2009-2021 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
Expand Down
2 changes: 1 addition & 1 deletion underscore-node.mjs
@@ -1,4 +1,4 @@
// Underscore.js 1.13.0-3
// Underscore.js 1.13.0
// https://underscorejs.org
// (c) 2009-2021 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors
// Underscore may be freely distributed under the MIT license.
Expand Down
4 changes: 2 additions & 2 deletions underscore-umd.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion underscore-umd.js.map

Large diffs are not rendered by default.

0 comments on commit 37dc52a

Please sign in to comment.