Skip to content

Commit

Permalink
Release 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Krinkle committed Sep 8, 2020
1 parent a787e39 commit 66826ee
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@

1.2.3 / 2020-09-07
==================

* Helpers: Correct spelling in `autoRegister()` error message. (P. Roebuck) [#108](https://github.com/js-reporters/js-reporters/issues/108)
* Reporter: Align `actual` with `expected` in TapReporter. (Robert Jackson) [#107](https://github.com/js-reporters/js-reporters/pull/107)
* Reporter: Revert "Fix YAML output in TAP reporter". [#110](https://github.com/js-reporters/js-reporters/issues/110)

1.2.2 / 2019-05-13
==================

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

1.2.1 / 2017-07-04
==================
Expand Down
12 changes: 6 additions & 6 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Release Process

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

That's all!
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "js-reporters",
"version": "1.2.2",
"version": "1.2.3",
"description": "common reporter interface for javascript testing frameworks",
"main": "dist/js-reporters.js",
"license": "MIT",
Expand All @@ -10,7 +10,7 @@
},
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"prepare": "npm run build",
"pretest": "npm run build",
"test": "standard && npm run test-unit && npm run test-integration",
"test-unit": "mocha --recursive test/unit/ && npm run test-browser",
Expand Down

0 comments on commit 66826ee

Please sign in to comment.