From beb443ba3717aa470dc0bef59ef8c4a5dede359b Mon Sep 17 00:00:00 2001 From: Simon de Lang Date: Fri, 25 Aug 2017 15:32:38 +0200 Subject: [PATCH] Publish - grunt-stryker@0.7.0 - stryker-api@0.8.0 - stryker-html-reporter@0.7.0 - stryker-jasmine@0.5.0 - stryker-karma-runner@0.7.0 - stryker-mocha-framework@0.4.0 - stryker-mocha-runner@0.7.0 - stryker@0.9.0 --- packages/grunt-stryker/CHANGELOG.md | 10 +++++++- packages/grunt-stryker/package.json | 6 ++--- packages/stryker-api/CHANGELOG.md | 18 ++++++++++++++- packages/stryker-api/package.json | 2 +- packages/stryker-html-reporter/CHANGELOG.md | 18 ++++++++++++++- packages/stryker-html-reporter/package.json | 6 ++--- packages/stryker-jasmine/CHANGELOG.md | 18 ++++++++++++++- packages/stryker-jasmine/package.json | 6 ++--- packages/stryker-karma-runner/CHANGELOG.md | 18 ++++++++++++++- packages/stryker-karma-runner/package.json | 6 ++--- packages/stryker-mocha-framework/CHANGELOG.md | 18 ++++++++++++++- packages/stryker-mocha-framework/package.json | 6 ++--- packages/stryker-mocha-runner/CHANGELOG.md | 23 ++++++++++++++++++- packages/stryker-mocha-runner/package.json | 6 ++--- packages/stryker/CHANGELOG.md | 23 ++++++++++++++++++- packages/stryker/package.json | 6 ++--- 16 files changed, 160 insertions(+), 30 deletions(-) diff --git a/packages/grunt-stryker/CHANGELOG.md b/packages/grunt-stryker/CHANGELOG.md index c451025d49..8d409d95fb 100644 --- a/packages/grunt-stryker/CHANGELOG.md +++ b/packages/grunt-stryker/CHANGELOG.md @@ -1,7 +1,15 @@ # Change Log All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +## [0.8.0](https://github.com/stryker-mutator/stryker/compare/grunt-stryker@0.7.0...grunt-stryker@0.8.0) (2017-08-25) + + + + +**Note:** Version bump only for package grunt-stryker # [0.7.0](https://github.com/stryker-mutator/stryker/compare/grunt-stryker@0.6.1...grunt-stryker@0.7.0) (2017-08-16) diff --git a/packages/grunt-stryker/package.json b/packages/grunt-stryker/package.json index d8eb60d8c9..73981cda78 100644 --- a/packages/grunt-stryker/package.json +++ b/packages/grunt-stryker/package.json @@ -1,7 +1,7 @@ { "name": "grunt-stryker", "description": "Grunt plugin for the mutation testing framework 'stryker'", - "version": "0.7.0", + "version": "0.8.0", "bugs": { "url": "https://github.com/stryker-mutator/stryker/issues" }, @@ -30,10 +30,10 @@ }, "main": "Gruntfile.js", "devDependencies": { - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" }, "peerDependencies": { "grunt": ">=0.4.5", - "stryker": ">=0.7.0" + "stryker": ">=0.9.0" } } diff --git a/packages/stryker-api/CHANGELOG.md b/packages/stryker-api/CHANGELOG.md index 184aacae2b..3ffca4bc05 100644 --- a/packages/stryker-api/CHANGELOG.md +++ b/packages/stryker-api/CHANGELOG.md @@ -1,7 +1,23 @@ # Change Log All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.8.0](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.7.0...stryker-api@0.8.0) (2017-08-25) + + +### Code Refactoring + +* change ConfigWriter interface name to ConfigEditor (#357) ([ec4ae03](https://github.com/stryker-mutator/stryker/commit/ec4ae03)) + + +### BREAKING CHANGES + +* Public api for `ConfigWriter` is renamed to `ConfigEditor`. The corresponding `write` method is renamed to `edit`. If you're using custom `ConfigWriter` plugins you should rename the `write` method to `edit`. Please update the `stryker-mocha-framework` and `stryker-karma-runner` to the latest versions as they provide the new `ConfigEditor` plugin. + + + # [0.7.0](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.6.0...stryker-api@0.7.0) (2017-08-11) diff --git a/packages/stryker-api/package.json b/packages/stryker-api/package.json index f9d3f6fddc..5693d35c26 100644 --- a/packages/stryker-api/package.json +++ b/packages/stryker-api/package.json @@ -1,6 +1,6 @@ { "name": "stryker-api", - "version": "0.7.0", + "version": "0.8.0", "description": "The api for the extendable JavaScript mutation testing framework Stryker", "scripts": { "start": "tsc -w", diff --git a/packages/stryker-html-reporter/CHANGELOG.md b/packages/stryker-html-reporter/CHANGELOG.md index c2e841bcbb..19921a13e2 100644 --- a/packages/stryker-html-reporter/CHANGELOG.md +++ b/packages/stryker-html-reporter/CHANGELOG.md @@ -1,7 +1,23 @@ # Change Log All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.7.0](https://github.com/stryker-mutator/stryker/compare/stryker-html-reporter@0.6.0...stryker-html-reporter@0.7.0) (2017-08-25) + + +### Code Refactoring + +* change ConfigWriter interface name to ConfigEditor (#357) ([ec4ae03](https://github.com/stryker-mutator/stryker/commit/ec4ae03)) + + +### BREAKING CHANGES + +* Public api for `ConfigWriter` is renamed to `ConfigEditor`. The corresponding `write` method is renamed to `edit`. If you're using custom `ConfigWriter` plugins you should rename the `write` method to `edit`. Please update the `stryker-mocha-framework` and `stryker-karma-runner` to the latest versions as they provide the new `ConfigEditor` plugin. + + + # [0.6.0](https://github.com/stryker-mutator/stryker/compare/stryker-html-reporter@0.5.0...stryker-html-reporter@0.6.0) (2017-08-11) diff --git a/packages/stryker-html-reporter/package.json b/packages/stryker-html-reporter/package.json index ecafa74cdd..ffa9e453cf 100644 --- a/packages/stryker-html-reporter/package.json +++ b/packages/stryker-html-reporter/package.json @@ -1,6 +1,6 @@ { "name": "stryker-html-reporter", - "version": "0.6.0", + "version": "0.7.0", "description": "An html reporter for the JavaScript mutation testing framework Stryker", "main": "src/index.js", "typings": "src/index.d.ts", @@ -41,7 +41,7 @@ "typed-html": "^0.3.3" }, "peerDependencies": { - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" }, "devDependencies": { "@types/file-url": "^1.0.28", @@ -49,7 +49,7 @@ "@types/selenium-webdriver": "^3.0.3", "bootstrap": "3.3.7", "highlight.js": "^9.4.0", - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" }, "contributors": [ "Nico Jansen ", diff --git a/packages/stryker-jasmine/CHANGELOG.md b/packages/stryker-jasmine/CHANGELOG.md index 56c30e8021..9da07eacd2 100644 --- a/packages/stryker-jasmine/CHANGELOG.md +++ b/packages/stryker-jasmine/CHANGELOG.md @@ -1,7 +1,23 @@ # Change Log All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.5.0](https://github.com/stryker-mutator/stryker/compare/stryker-jasmine@0.4.0...stryker-jasmine@0.5.0) (2017-08-25) + + +### Code Refactoring + +* change ConfigWriter interface name to ConfigEditor (#357) ([ec4ae03](https://github.com/stryker-mutator/stryker/commit/ec4ae03)) + + +### BREAKING CHANGES + +* Public api for `ConfigWriter` is renamed to `ConfigEditor`. The corresponding `write` method is renamed to `edit`. If you're using custom `ConfigWriter` plugins you should rename the `write` method to `edit`. Please update the `stryker-mocha-framework` and `stryker-karma-runner` to the latest versions as they provide the new `ConfigEditor` plugin. + + + # [0.4.0](https://github.com/stryker-mutator/stryker/compare/stryker-jasmine@0.3.0...stryker-jasmine@0.4.0) (2017-08-11) diff --git a/packages/stryker-jasmine/package.json b/packages/stryker-jasmine/package.json index 9ecf01d63c..775e18946a 100644 --- a/packages/stryker-jasmine/package.json +++ b/packages/stryker-jasmine/package.json @@ -1,6 +1,6 @@ { "name": "stryker-jasmine", - "version": "0.4.0", + "version": "0.5.0", "description": "A plugin to use the Jasmine test framework in Stryker, the JavaScript mutation testing framework", "main": "src/index.js", "scripts": { @@ -30,10 +30,10 @@ "homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/stryker-jasmine#readme", "peerDependencies": { "jasmine-core": ">=2", - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" }, "devDependencies": { - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" }, "contributors": [] } diff --git a/packages/stryker-karma-runner/CHANGELOG.md b/packages/stryker-karma-runner/CHANGELOG.md index 79cbf59f09..45764d8493 100644 --- a/packages/stryker-karma-runner/CHANGELOG.md +++ b/packages/stryker-karma-runner/CHANGELOG.md @@ -1,7 +1,23 @@ # Change Log All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.7.0](https://github.io/stryker-mutator/stryker/compare/stryker-karma-runner@0.6.0...stryker-karma-runner@0.7.0) (2017-08-25) + + +### Code Refactoring + +* change ConfigWriter interface name to ConfigEditor (#357) ([ec4ae03](https://github.io/stryker-mutator/stryker/commit/ec4ae03)) + + +### BREAKING CHANGES + +* Public api for `ConfigWriter` is renamed to `ConfigEditor`. The corresponding `write` method is renamed to `edit`. If you're using custom `ConfigWriter` plugins you should rename the `write` method to `edit`. Please update the `stryker-mocha-framework` and `stryker-karma-runner` to the latest versions as they provide the new `ConfigEditor` plugin. + + + # [0.6.0](https://github.io/stryker-mutator/stryker/compare/stryker-karma-runner@0.5.0...stryker-karma-runner@0.6.0) (2017-08-11) diff --git a/packages/stryker-karma-runner/package.json b/packages/stryker-karma-runner/package.json index 3dc865edce..83ac78652c 100644 --- a/packages/stryker-karma-runner/package.json +++ b/packages/stryker-karma-runner/package.json @@ -1,6 +1,6 @@ { "name": "stryker-karma-runner", - "version": "0.6.0", + "version": "0.7.0", "description": "A plugin to use the karma test runner in Stryker, the JavaScript mutation testing framework", "main": "src/index.js", "scripts": { @@ -32,14 +32,14 @@ "homepage": "https://github.com/stryker-mutator/stryker/tree/master/packages/stryker-karma-runner#readme", "peerDependencies": { "karma": "^0.13.0 || ~1.0.0 || ^1.1.1", - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" }, "devDependencies": { "jasmine-core": "^2.4.1", "karma": "^0.13.0 || ~1.0.0 || ^1.1.1", "karma-jasmine": "^1.0.2", "karma-phantomjs-launcher": "^1.0.1", - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" }, "dependencies": { "lodash": "^4.13.1", diff --git a/packages/stryker-mocha-framework/CHANGELOG.md b/packages/stryker-mocha-framework/CHANGELOG.md index b2f96e41a9..ba3e71658f 100644 --- a/packages/stryker-mocha-framework/CHANGELOG.md +++ b/packages/stryker-mocha-framework/CHANGELOG.md @@ -1,7 +1,23 @@ # Change Log All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.4.0](https://github.com/stryker-mutator/stryker/compare/stryker-mocha-framework@0.3.0...stryker-mocha-framework@0.4.0) (2017-08-25) + + +### Code Refactoring + +* change ConfigWriter interface name to ConfigEditor (#357) ([ec4ae03](https://github.com/stryker-mutator/stryker/commit/ec4ae03)) + + +### BREAKING CHANGES + +* Public api for `ConfigWriter` is renamed to `ConfigEditor`. The corresponding `write` method is renamed to `edit`. If you're using custom `ConfigWriter` plugins you should rename the `write` method to `edit`. Please update the `stryker-mocha-framework` and `stryker-karma-runner` to the latest versions as they provide the new `ConfigEditor` plugin. + + + # [0.3.0](https://github.com/stryker-mutator/stryker/compare/stryker-mocha-framework@0.2.0...stryker-mocha-framework@0.3.0) (2017-08-11) diff --git a/packages/stryker-mocha-framework/package.json b/packages/stryker-mocha-framework/package.json index 71a008714c..6e99c82059 100644 --- a/packages/stryker-mocha-framework/package.json +++ b/packages/stryker-mocha-framework/package.json @@ -1,6 +1,6 @@ { "name": "stryker-mocha-framework", - "version": "0.3.0", + "version": "0.4.0", "description": "A plugin to use the mocha test framework in Stryker, the JavaScript mutation testing framework", "main": "src/index.js", "scripts": { @@ -39,11 +39,11 @@ "log4js": "^1.1.1" }, "devDependencies": { - "stryker-api": "^0.7.0", + "stryker-api": "^0.8.0", "tslib": "^1.5.0" }, "peerDependencies": { "mocha": ">= 2.3.3 < 4", - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" } } diff --git a/packages/stryker-mocha-runner/CHANGELOG.md b/packages/stryker-mocha-runner/CHANGELOG.md index ffbadcb263..7da7bb6f2f 100644 --- a/packages/stryker-mocha-runner/CHANGELOG.md +++ b/packages/stryker-mocha-runner/CHANGELOG.md @@ -1,7 +1,28 @@ # Change Log All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.7.0](https://github.com/stryker-mutator/stryker/compare/stryker-mocha-runner@0.6.0...stryker-mocha-runner@0.7.0) (2017-08-25) + + +### Bug Fixes + +* **MochaTestRunner:** Exit with a warning if no tests were executed (#360) ([ac52860](https://github.com/stryker-mutator/stryker/commit/ac52860)) + + +### Code Refactoring + +* change ConfigWriter interface name to ConfigEditor (#357) ([ec4ae03](https://github.com/stryker-mutator/stryker/commit/ec4ae03)) + + +### BREAKING CHANGES + +* Public api for `ConfigWriter` is renamed to `ConfigEditor`. The corresponding `write` method is renamed to `edit`. If you're using custom `ConfigWriter` plugins you should rename the `write` method to `edit`. Please update the `stryker-mocha-framework` and `stryker-karma-runner` to the latest versions as they provide the new `ConfigEditor` plugin. + + + # [0.6.0](https://github.com/stryker-mutator/stryker/compare/stryker-mocha-runner@0.5.0...stryker-mocha-runner@0.6.0) (2017-08-11) diff --git a/packages/stryker-mocha-runner/package.json b/packages/stryker-mocha-runner/package.json index fd3c0ad451..0e745ba8b1 100644 --- a/packages/stryker-mocha-runner/package.json +++ b/packages/stryker-mocha-runner/package.json @@ -1,6 +1,6 @@ { "name": "stryker-mocha-runner", - "version": "0.6.0", + "version": "0.7.0", "description": "A plugin to use the mocha test runner in Stryker, the JavaScript mutation testing framework", "main": "src/index.js", "scripts": { @@ -38,11 +38,11 @@ "log4js": "^1.1.1" }, "devDependencies": { - "stryker-api": "^0.7.0", + "stryker-api": "^0.8.0", "tslib": "^1.5.0" }, "peerDependencies": { "mocha": ">= 2.3.3 < 4", - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" } } diff --git a/packages/stryker/CHANGELOG.md b/packages/stryker/CHANGELOG.md index 0fa680b3c3..e933d680ea 100644 --- a/packages/stryker/CHANGELOG.md +++ b/packages/stryker/CHANGELOG.md @@ -1,7 +1,28 @@ # Change Log All notable changes to this project will be documented in this file. -See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + + +# [0.9.0](https://github.com/stryker-mutator/stryker/compare/stryker@0.8.0...stryker@0.9.0) (2017-08-25) + + +### Bug Fixes + +* **MochaTestRunner:** Exit with a warning if no tests were executed (#360) ([ac52860](https://github.com/stryker-mutator/stryker/commit/ac52860)) + + +### Code Refactoring + +* change ConfigWriter interface name to ConfigEditor (#357) ([ec4ae03](https://github.com/stryker-mutator/stryker/commit/ec4ae03)) + + +### BREAKING CHANGES + +* Public api for `ConfigWriter` is renamed to `ConfigEditor`. The corresponding `write` method is renamed to `edit`. If you're using custom `ConfigWriter` plugins you should rename the `write` method to `edit`. Please update the `stryker-mocha-framework` and `stryker-karma-runner` to the latest versions as they provide the new `ConfigEditor` plugin. + + + # [0.8.0](https://github.com/stryker-mutator/stryker/compare/stryker@0.7.0...stryker@0.8.0) (2017-08-11) diff --git a/packages/stryker/package.json b/packages/stryker/package.json index c77fbef8a3..071054ce58 100644 --- a/packages/stryker/package.json +++ b/packages/stryker/package.json @@ -1,6 +1,6 @@ { "name": "stryker", - "version": "0.8.0", + "version": "0.9.0", "description": "The extendable JavaScript mutation testing framework", "main": "src/Stryker.js", "typings": "src/Stryker.d.ts", @@ -73,9 +73,9 @@ "devDependencies": { "@types/commander": "^2.9.0", "@types/inquirer": "0.0.33", - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" }, "peerDependencies": { - "stryker-api": "^0.7.0" + "stryker-api": "^0.8.0" } }