Skip to content

Commit

Permalink
PIT 1.15.0 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
szpak committed Sep 28, 2023
1 parent 06a2ac7 commit 3186ab9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# gradle-pitest-plugin changelog

## 1.14.0 - Unreleased
## 1.15.0 - Unreleased

- Automatically add `junit-platform-launcher` dependency to `testRuntimeOnly` for JUnit Platform projects - [#337](https://github.com/szpak/gradle-pitest-plugin/issues/337) - help from [Björn Kautler](https://github.com/Vampire)
- Remove deprecated `Project.getConvention()` usage (in Gradle 8.2+) - [#343](https://github.com/szpak/gradle-pitest-plugin/issues/343)
- PIT 1.14.4 by default
- PIT 1.15.0 by default
- Basic regression testing with Gradle up to 8.2

**Compatibility notes**
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ buildscript {

sourceCompatibility = 1.8

ext.pitestAggregatorVersion = "1.14.4" //Must be equal to default PIT version in PitestPlugin
ext.pitestAggregatorVersion = "1.15.0" //Must be equal to default PIT version in PitestPlugin

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class PitestPlugin implements Plugin<Project> {
public final static String PITEST_REPORT_DIRECTORY_NAME = 'pitest'
public final static String PITEST_CONFIGURATION_NAME = 'pitest'

public final static String DEFAULT_PITEST_VERSION = '1.14.4'
public final static String DEFAULT_PITEST_VERSION = '1.15.0'
@Internal //6.4 due to main -> mainClass change to avoid deprecation warning in Gradle 7.x - https://github.com/szpak/gradle-pitest-plugin/pull/289
public static final GradleVersion MINIMAL_SUPPORTED_GRADLE_VERSION = GradleVersion.version("6.4") //public as used also in regression tests

Expand Down

0 comments on commit 3186ab9

Please sign in to comment.