diff --git a/CHANGELOG.md b/CHANGELOG.md index 602c64e..17acbf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.8.1] - 2023-08-20 + +### Fixed + +- Fixed Pitest compatibility issue. + ## [0.8.0] - 2023-08-20 ### Added @@ -137,7 +143,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Gradle helpers for Fabric and Forge projects. - CI workflows. -[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.8.0...HEAD +[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.8.1...HEAD + +[0.8.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.7.1...v0.8.0 diff --git a/helper.gradle b/helper.gradle index 7e511e8..eb5754a 100644 --- a/helper.gradle +++ b/helper.gradle @@ -93,8 +93,8 @@ allprojects { ext.enableMutationTesting = { apply plugin: info.solidsoft.gradle.pitest.PitestPlugin pitest { - junit5PluginVersion = "1.2.0" - pitestVersion = "1.14.4" + junit5PluginVersion = "1.1.2" + pitestVersion = "1.10.4" outputFormats.set(['HTML']) mutationThreshold.set(90) coverageThreshold.set(80)