Skip to content

Commit 0d15acb

Browse files
committed
Release 1.10.0
- New: Extension function for the rootCoverage block when using .kts build files (#112) - Based on Android Gradle Plugin 8.8 API - Compatible with Gradle version 8.10.2+
1 parent e6313d8 commit 0d15acb

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ following methods:
2929
```kotlin
3030
plugins {
3131
// Add the plugin to the plugin block
32-
id("nl.neotech.plugin.rootcoverage") version "1.9.0"
32+
id("nl.neotech.plugin.rootcoverage") version "1.10.0"
3333
}
3434
```
3535
</details>
@@ -40,7 +40,7 @@ following methods:
4040
```groovy
4141
plugins {
4242
// Add the plugin to the plugin block
43-
id "nl.neotech.plugin.rootcoverage" version "1.9.0"
43+
id "nl.neotech.plugin.rootcoverage" version "1.10.0"
4444
}
4545
```
4646
</details>
@@ -56,7 +56,7 @@ following methods:
5656
5757
buildscript {
5858
dependencies {
59-
classpath 'nl.neotech.plugin:android-root-coverage-plugin:1.9.0'
59+
classpath 'nl.neotech.plugin:android-root-coverage-plugin:1.10.0'
6060
}
6161
}
6262
```
@@ -227,7 +227,8 @@ for specific modules:
227227
# 4. Compatibility
228228
| Version | [Android Gradle plugin version](https://developer.android.com/studio/releases/gradle-plugin#updating-gradle) | Gradle version |
229229
|------------|--------------------------------------------------------------------------------------------------------------|------------------------|
230-
| **1.9.0** | 8.6.0+ | 8.7+ |
230+
| **1.10.0** | 8.8+ | 8.10.2+ |
231+
| **1.9.0** | 8.6+ | 8.7+ |
231232
| **1.8.0** | 8.5.2<br/>8.4.2<br/>8.3.0-alpha05 - 8.3.2 | 8.6+<br/>8.5+<br/>8.4+ |
232233
| **Note 1** | 8.0 - 8.3.0-alpha04 | n.a. |
233234
| **1.7.1** | 7.4 | 7.5+ |

plugin/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
POM_ARTIFACT_ID=android-root-coverage-plugin
2-
VERSION_NAME=1.9.0
2+
VERSION_NAME=1.10.0
33
POM_NAME=Android Root Coverage Plugin
44
POM_DESCRIPTION=A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.

0 commit comments

Comments
 (0)