Skip to content

Commit

Permalink
Release 0.2.19
Browse files Browse the repository at this point in the history
  • Loading branch information
koral-- committed Aug 4, 2024
1 parent 8eb32ed commit 0ea2168
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 0.2.19 - 2024-08-04

- Update AGP to 8.5.0 by @koral-- in https://github.com/koral--/gradle-pitest-plugin/pull/127
- Update dependency com.android.support:support-annotations to v27.1.1 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/104
- Update dependency net.bytebuddy:byte-buddy to v1.14.18 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/108
- Update dependency org.jetbrains:annotations-java5 to v16.0.3 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/109
- Update junit5Version to v5.10.3 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/129
- Update dependency de.mannodermaus.gradle.plugins:android-junit5 to v1.10.2.0 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/128
- Update dependency org.slf4j:slf4j-api to v2.0.13 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/111
- Update kotlin_version to v1.9.25 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/130
- Update dependency codenarc to v2.2.0 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/131
- Update plugin com.github.ben-manes.versions to v0.51.0 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/136
- Update dependency com.netflix.nebula:nebula-test to v10.6.1 by @renovate in https://github.com/koral--/gradle-pitest-plugin/pull/132

# 0.2.18 - 2023-12-22

- Yet another fix for mockable Android JAR path on Windows [#116](https://github.com/koral--/gradle-pitest-plugin/issues/116#issuecomment-1867313049)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ which supports Android gradle projects.

```groovy
plugins {
id 'pl.droidsonroids.pitest' version '0.2.18'
id 'pl.droidsonroids.pitest' version '0.2.19'
}
```

```kotlin
plugins {
id("pl.droidsonroids.pitest") version "0.2.18"
id("pl.droidsonroids.pitest") version "0.2.19"
}
```

Expand All @@ -25,7 +25,7 @@ buildscript {
google()
}
dependencies {
classpath("pl.droidsonroids.gradle:gradle-pitest-plugin:0.2.18")
classpath("pl.droidsonroids.gradle:gradle-pitest-plugin:0.2.19")
}
}

Expand Down
12 changes: 0 additions & 12 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import org.gradle.api.internal.classpath.ModuleRegistry
import org.gradle.api.internal.project.ProjectInternal

plugins {
id 'com.github.ben-manes.versions' version '0.51.0'
id 'groovy'
Expand All @@ -12,8 +9,6 @@ plugins {
id 'com.vanniktech.maven.publish' version '0.25.3'
}

//sourceCompatibility = 1.8

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

repositories {
Expand Down Expand Up @@ -49,8 +44,6 @@ dependencies {
funcTestImplementation sourceSets.test.output
funcTestImplementation 'com.vdurmont:semver4j:3.1.0'
funcTestImplementation 'com.android.tools.build:gradle:8.5.1'
// funcTestImplementation configurations.testImplementation
// funcTestRuntimeOnly configurations.testRuntimeOnly
funcTestImplementation('com.netflix.nebula:nebula-test:10.6.1') {
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
}
Expand All @@ -63,7 +56,6 @@ tasks.register('funcTest', Test) {
classpath = sourceSets.funcTest.runtimeClasspath
forkEvery 1
systemProperty('org.gradle.daemon', 'false')
systemProperty('ignoreDeprecations', 'true') //FIXME remove after AGP stops using deprecated API
}

funcTest.shouldRunAfter test
Expand Down Expand Up @@ -106,10 +98,6 @@ tasks.register("codenarc") {

//Workaround on https://github.com/gradle/gradle/issues/12663
tasks.withType(CodeNarc) { codeNarcTask ->
reports {
// text.enabled = true
// html.enabled = true
}
codeNarcTask.finalizedBy(project.task("print${codeNarcTask.name.capitalize()}") {
onlyIf {
codeNarcTask.state.failure != null
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=0.2.18
VERSION_NAME=0.2.19
GROUP=pl.droidsonroids.gradle
POM_DESCRIPTION=Gradle plugin for PIT Mutation Testing in Android projects
POM_URL=https://github.com/koral--/gradle-pitest-plugin
Expand Down

0 comments on commit 0ea2168

Please sign in to comment.