Skip to content

Commit 66826ee

Browse files
committed
Release 1.2.3
1 parent a787e39 commit 66826ee

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1+
2+
1.2.3 / 2020-09-07
3+
==================
4+
5+
* Helpers: Correct spelling in `autoRegister()` error message. (P. Roebuck) [#108](https://github.com/js-reporters/js-reporters/issues/108)
6+
* Reporter: Align `actual` with `expected` in TapReporter. (Robert Jackson) [#107](https://github.com/js-reporters/js-reporters/pull/107)
7+
* Reporter: Revert "Fix YAML output in TAP reporter". [#110](https://github.com/js-reporters/js-reporters/issues/110)
8+
19
1.2.2 / 2019-05-13
210
==================
311

4-
* Reporter: Fix YAML output in TAP reporter ([#110](https://github.com/js-reporters/js-reporters/issues/110))
12+
* Reporter: Fix YAML output in TAP reporter. [#110](https://github.com/js-reporters/js-reporters/issues/110)
513

614
1.2.1 / 2017-07-04
715
==================

RELEASE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Release Process
22

3-
1. Update `CHANGELOG.md` using `git changelog` from the [`git-extras`](https://github.com/tj/git-extras) package
4-
2. Commit changelog updates with message: `Changelog: Update for x.x.x release`
5-
3. Update `package.json` version and tag it using `npm version x.x.x -m "Release: vx.x.x"`
6-
4. Push the two new commits and tag to GitHub
7-
5. Run `npm publish`
8-
6. Publish a new [release on GitHub](https://github.com/js-reporters/js-reporters/releases) with the changelog update
3+
1. Update `CHANGELOG.md` using `git changelog` from the [`git-extras`](https://github.com/tj/git-extras) package. Edit the changelog file as needed, and stage the changes.
4+
2. Update `package.json` version, and stage the changes.
5+
3. Commit with message `Release X.Y.Z`, and create a signed tag `git tag -s "vX.Y.Z" -m "Release X.Y.Z"`
6+
4. Push the commit and tag to GitHub.
7+
5. Run `npm publish`.
8+
6. Publish a new [release on GitHub](https://github.com/js-reporters/js-reporters/releases) with a copy of the changelog.
99

1010
That's all!

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-reporters",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "common reporter interface for javascript testing frameworks",
55
"main": "dist/js-reporters.js",
66
"license": "MIT",
@@ -10,7 +10,7 @@
1010
},
1111
"scripts": {
1212
"build": "rollup -c",
13-
"prepublish": "npm run build",
13+
"prepare": "npm run build",
1414
"pretest": "npm run build",
1515
"test": "standard && npm run test-unit && npm run test-integration",
1616
"test-unit": "mocha --recursive test/unit/ && npm run test-browser",

0 commit comments

Comments
 (0)