Skip to content

Commit 97804c4

Browse files
committed
v2.0.4
1 parent 7fa4650 commit 97804c4

File tree

11 files changed

+115
-15
lines changed

11 files changed

+115
-15
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.4](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.3...v2.0.4) (2023-10-31)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** update dependency eslint-plugin-import to ~2.29.0 ([#2812](https://github.com/stryker-mutator/mutation-testing-elements/issues/2812)) ([e30e293](https://github.com/stryker-mutator/mutation-testing-elements/commit/e30e293fceed0ca862c96f859b5a7ede9091c166))
12+
13+
14+
### Features
15+
16+
* **svelte:** support svelte syntax highlighting ([#2807](https://github.com/stryker-mutator/mutation-testing-elements/issues/2807)) ([ec22df7](https://github.com/stryker-mutator/mutation-testing-elements/commit/ec22df7c5dd4356a82f26fb49ff1aab5bdba71bf))
17+
18+
19+
### Performance Improvements
20+
21+
* **metrics:** improve performance for coverage relation ([#2778](https://github.com/stryker-mutator/mutation-testing-elements/issues/2778)) ([c40369d](https://github.com/stryker-mutator/mutation-testing-elements/commit/c40369de1a62a38c9b792b8a4090c906d8526960))
22+
23+
24+
25+
26+
627
## [2.0.3](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.2...v2.0.3) (2023-07-27)
728

829
**Note:** Version bump only for package root

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"packages": ["packages/*"],
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"command": {
55
"version": {
66
"allowBranch": "master",

package-lock.json

Lines changed: 43 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/elements/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.4](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.3...v2.0.4) (2023-10-31)
7+
8+
9+
### Features
10+
11+
* **svelte:** support svelte syntax highlighting ([#2807](https://github.com/stryker-mutator/mutation-testing-elements/issues/2807)) ([ec22df7](https://github.com/stryker-mutator/mutation-testing-elements/commit/ec22df7c5dd4356a82f26fb49ff1aab5bdba71bf))
12+
13+
14+
### Performance Improvements
15+
16+
* **metrics:** improve performance for coverage relation ([#2778](https://github.com/stryker-mutator/mutation-testing-elements/issues/2778)) ([c40369d](https://github.com/stryker-mutator/mutation-testing-elements/commit/c40369de1a62a38c9b792b8a4090c906d8526960))
17+
18+
19+
20+
21+
622
## [2.0.3](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.2...v2.0.3) (2023-07-27)
723

824
**Note:** Version bump only for package mutation-testing-elements

packages/elements/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-testing-elements",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "A suite of web components for a mutation testing report.",
55
"unpkg": "dist/mutation-test-elements.js",
66
"main": "dist/index.js",
@@ -49,8 +49,8 @@
4949
"karma-sourcemap-loader": "0.4.0",
5050
"karma-webpack": "5.0.0",
5151
"lit": "3.0.1",
52-
"mutation-testing-metrics": "2.0.3",
53-
"mutation-testing-report-schema": "2.0.3",
52+
"mutation-testing-metrics": "2.0.4",
53+
"mutation-testing-report-schema": "2.0.4",
5454
"postcss": "8.4.31",
5555
"postcss-loader": "7.3.3",
5656
"prism-svelte": "0.5.0",

packages/metrics-scala/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.4](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.3...v2.0.4) (2023-10-31)
7+
8+
**Note:** Version bump only for package mutation-testing-metrics-scala
9+
10+
11+
12+
13+
614
## [2.0.3](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.2...v2.0.3) (2023-07-27)
715

816
**Note:** Version bump only for package mutation-testing-metrics-scala

packages/metrics-scala/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-testing-metrics-scala",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Zero-dependency library to calculate mutation testing metrics in Scala.",
55
"scripts": {
66
"test": "sbt \"compile; metrics/test; circe/test; docs/mdoc --check\"",

packages/metrics/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.4](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.3...v2.0.4) (2023-10-31)
7+
8+
9+
### Performance Improvements
10+
11+
* **metrics:** improve performance for coverage relation ([#2778](https://github.com/stryker-mutator/mutation-testing-elements/issues/2778)) ([c40369d](https://github.com/stryker-mutator/mutation-testing-elements/commit/c40369de1a62a38c9b792b8a4090c906d8526960))
12+
13+
14+
15+
16+
617
## [2.0.3](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.2...v2.0.3) (2023-07-27)
718

819
**Note:** Version bump only for package mutation-testing-metrics

packages/metrics/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-testing-metrics",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "Utility functions to calculate mutation testing metrics.",
55
"main": "dist/src/index.js",
66
"typings": "dist/src/index.d.ts",
@@ -20,7 +20,7 @@
2020
},
2121
"homepage": "https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/metrics#readme",
2222
"dependencies": {
23-
"mutation-testing-report-schema": "2.0.3"
23+
"mutation-testing-report-schema": "2.0.4"
2424
},
2525
"devDependencies": {
2626
"eslint-config-mte": "*"

packages/report-schema/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.4](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.3...v2.0.4) (2023-10-31)
7+
8+
**Note:** Version bump only for package mutation-testing-report-schema
9+
10+
11+
12+
13+
614
## [2.0.3](https://github.com/stryker-mutator/mutation-testing-elements/compare/v2.0.2...v2.0.3) (2023-07-27)
715

816
**Note:** Version bump only for package mutation-testing-report-schema

packages/report-schema/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mutation-testing-report-schema",
3-
"version": "2.0.3",
3+
"version": "2.0.4",
44
"description": "The json schema for a mutation testing report.",
55
"main": "dist/src/index.js",
66
"typings": "dist/src/index.d.ts",

0 commit comments

Comments
 (0)