mutation-testing-metrics-scala
Advanced tools
Comparing version 1.7.6 to 1.7.7
@@ -6,2 +6,10 @@ # Change Log | ||
## [1.7.7](https://github.com/stryker-mutator/mutation-testing-elements/compare/v1.7.6...v1.7.7) (2021-12-09) | ||
**Note:** Version bump only for package mutation-testing-metrics-scala | ||
## [1.7.6](https://github.com/stryker-mutator/mutation-testing-elements/compare/v1.7.5...v1.7.6) (2021-11-19) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "mutation-testing-metrics-scala", | ||
"version": "1.7.6", | ||
"version": "1.7.7", | ||
"description": "Zero-dependency library to calculate mutation testing metrics in Scala.", | ||
@@ -20,3 +20,3 @@ "scripts": { | ||
"homepage": "https://github.com/stryker-mutator/mutation-testing-elements/tree/master/packages/metrics-scala#readme", | ||
"gitHead": "33d09728720578bbdc1be8067d66910bc5079fed" | ||
"gitHead": "6a99f0445ed9415e57a3b9bfeff9017d052f2f26" | ||
} |
@@ -10,3 +10,3 @@ [![Mutation testing badge](https://img.shields.io/endpoint?style=flat&url=https%3A%2F%2Fbadge-api.stryker-mutator.io%2Fgithub.com%2Fstryker-mutator%2Fmutation-testing-elements%2Fmaster%3Fmodule%3Dmetrics-scala)](https://badge-api.stryker-mutator.io/github.com/stryker-mutator/mutation-testing-elements/master?module=metrics-scala) | ||
Cross-compiled for Scala 2.12 and 2.13. If you want to use this library but require another target or platform (such as [Dotty](https://dotty.epfl.ch/), [Scala.js](http://www.scala-js.org/) or [Scala Native](https://www.scala-native.org/)) feel free to [create an issue](https://github.com/stryker-mutator/mutation-testing-elements/issues/new)! | ||
Cross-compiled for Scala 2.12, 2.13 and 3.1 on JVM and Scala.js. If you want to use this library but require another target or platform (such as [Scala Native](https://www.scala-native.org/)) feel free to [create an issue](https://github.com/stryker-mutator/mutation-testing-elements/issues/new)! | ||
@@ -21,2 +21,8 @@ ## Usage example | ||
Or for Scala.js: | ||
```scala | ||
libraryDependencies += "io.stryker-mutator" %%% "mutation-testing-metrics" % version | ||
``` | ||
The `mutation-testing-elements` and `mutation-testing-report-schema` projects are also published, see [NPM_PROJECTS_PUBLISHING](./NPM_PROJECTS_PUBLISHING.md) for more information. | ||
@@ -122,3 +128,3 @@ | ||
- `MetricsResult` is a trait with three implementations: | ||
- `MetricsResult` is a sealed trait with three implementations: | ||
- `MetricsResultRoot`: The root of a `MetricsResult`, contains zero or more `MetricsResult`'s | ||
@@ -131,3 +137,3 @@ - `MetricsDirectory`: Representation of a directory. Has a directory name and zero or more `MetricsResult`'s | ||
To use this project, you will need sbt. The recommended way on macOS/Linux is with [sbt-extras](https://github.com/paulp/sbt-extras). On Windows, you can install sbt using the [official .msi](https://www.scala-sbt.org/download.html). | ||
To use this project, you will need a [JDK](https://adoptium.net/) and sbt. The recommended way to install sbt is with with [Coursier](https://get-coursier.io/). Alternatively, on macOS/Linux [sbt-extras](https://github.com/dwijnand/sbt-extras), or on Windows using the [official .msi](https://www.scala-sbt.org/download.html) are also options. | ||
@@ -134,0 +140,0 @@ This is a normal sbt project, you can compile code with `sbt compile` and run tests |
25570
140