Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
All: Update url and version to 2.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Feb 15, 2024
1 parent b7f6be6 commit 529e804
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ ok 1 add > two numbers

## Current Release

<p class="lead lead--center">v2.20.0 (<a href="https://github.com/qunitjs/qunit/blob/2.20.0/History.md">changelog</a>)</p>
<p class="lead lead--center">v2.20.1 (<a href="https://github.com/qunitjs/qunit/blob/2.20.1/History.md">changelog</a>)</p>

These are the officially supported [release channels](intro.md#release-channels) for QUnit:

* CDN: [`qunit-2.20.0.js`](https://code.jquery.com/qunit/qunit-2.20.0.js) and [`qunit-2.20.0.css`](https://code.jquery.com/qunit/qunit-2.20.0.css)
* CDN: [`qunit-2.20.1.js`](https://code.jquery.com/qunit/qunit-2.20.1.js) and [`qunit-2.20.1.css`](https://code.jquery.com/qunit/qunit-2.20.1.css)
* npm: `npm install --save-dev qunit`
* Yarn: `yarn add --dev qunit`
* Bower: `bower install --save-dev qunit`
Expand Down
10 changes: 5 additions & 5 deletions intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@ To get started with QUnit in the browser, create a simple HTML file called `test
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test Suite</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.20.0.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.20.1.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.20.0.js"></script>
<script src="https://code.jquery.com/qunit/qunit-2.20.1.js"></script>
</body>
```

Expand Down Expand Up @@ -178,13 +178,13 @@ These are the officially supported download channels for QUnit releases:

* Download:

QUnit has no runtime dependencies for browser use. You can save the [`qunit-2.20.0.js`](https://code.jquery.com/qunit/qunit-2.20.0.js) and [`qunit-2.20.0.css`](https://code.jquery.com/qunit/qunit-2.20.0.css) files directly from the [jQuery CDN](https://code.jquery.com/qunit/), which is powered by [StackPath](https://www.stackpath.com/).
QUnit has no runtime dependencies for browser use. You can save the [`qunit-2.20.1.js`](https://code.jquery.com/qunit/qunit-2.20.1.js) and [`qunit-2.20.1.css`](https://code.jquery.com/qunit/qunit-2.20.1.css) files directly from the [jQuery CDN](https://code.jquery.com/qunit/), which is powered by [StackPath](https://www.stackpath.com/).

Or download them via the terminal:

```bash
curl -o qunit.css 'https://code.jquery.com/qunit/qunit-2.20.0.css'
curl -o qunit.js 'https://code.jquery.com/qunit/qunit-2.20.0.js'
curl -o qunit.css 'https://code.jquery.com/qunit/qunit-2.20.1.css'
curl -o qunit.js 'https://code.jquery.com/qunit/qunit-2.20.1.js'
```

* npm Registry:
Expand Down
4 changes: 2 additions & 2 deletions resources/example-add.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test Suite</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.20.0.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.20.1.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.20.0.js"></script>
<script src="https://code.jquery.com/qunit/qunit-2.20.1.js"></script>
<script>
function add(a, b) {
return a + b;
Expand Down
4 changes: 2 additions & 2 deletions resources/example-index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test Suite</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.20.0.css">
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.20.1.css">
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="https://code.jquery.com/qunit/qunit-2.20.0.js"></script>
<script src="https://code.jquery.com/qunit/qunit-2.20.1.js"></script>
<script>
function add(a, b) {
return a + b;
Expand Down

0 comments on commit 529e804

Please sign in to comment.