Skip to content

Commit e5f0253

Browse files
committed
Build: Prepare 2.14.0 release
1 parent f0f92b7 commit e5f0253

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,4 @@ Jessica Jordan <[email protected]>
113113
Steve McClure <[email protected]>
114114
Stephen Yeung <[email protected]>
115115
116+
Bryan Crotaz <[email protected]>

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,4 @@ Jessica Jordan <[email protected]>
169169
Ray Cohen <[email protected]>
170170
Steve McClure <[email protected]>
171171
brandonocasey <[email protected]>
172+
Bryan Crotaz <[email protected]>

History.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11

2+
2.14.0 / 2021-01-12
3+
==================
4+
5+
### Added
6+
7+
* HTML Reporter: Use a fixed header with scrollable test results. (Bryan Crotaz) [#1513](https://github.com/qunitjs/qunit/pull/1513)
8+
* Core: Add official support for SpiderMonkey runtime. (Timo Tijhof) [#1535](https://github.com/qunitjs/qunit/issues/1535)
9+
10+
### Changed
11+
12+
* CLI: Update and re-audit `tiny-glob` and `node-watch` dependencies. [#1522](https://github.com/qunitjs/qunit/issues/1522), [#1524](https://github.com/qunitjs/qunit/issues/1524)
13+
14+
### Fixed
15+
16+
* HTML Reporter: Set `main` and `navigation` ARIA roles. (Steve McClure) [#1084](https://github.com/qunitjs/qunit/issues/1084)
17+
* Core: Fix `QUnit.module.only` logic for unscoped modules. (Steve McClure) [#1272](https://github.com/qunitjs/qunit/issues/1272)
18+
* Assert: Fix `assert.timeout()` bug causing a non-async test to fail. [#1539](https://github.com/qunitjs/qunit/issues/1539)
19+
220
2.13.0 / 2020-11-29
321
==================
422

build/prep-release.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ const Repo = {
5050
} )
5151
.sort()
5252
.map( change => change.line )
53-
.join( "\n" );
53+
.join( "\n" ) +
54+
"\n";
5455

5556
const today = new Date().toISOString().slice( 0, 10 );
5657
const newSection = `\n${version} / ${today}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "qunit",
33
"title": "QUnit",
44
"description": "The powerful, easy-to-use testing framework.",
5-
"version": "2.13.0-pre",
5+
"version": "2.14.0-pre",
66
"homepage": "https://qunitjs.com",
77
"author": {
88
"name": "OpenJS Foundation and other contributors",

0 commit comments

Comments
 (0)