Skip to content

Commit

Permalink
Release 1.10.0 (#116)
Browse files Browse the repository at this point in the history
- 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+
  • Loading branch information
Rolf-Smit authored Feb 6, 2025
1 parent e6313d8 commit dc9f71c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ following methods:
```kotlin
plugins {
// Add the plugin to the plugin block
id("nl.neotech.plugin.rootcoverage") version "1.9.0"
id("nl.neotech.plugin.rootcoverage") version "1.10.0"
}
```
</details>
Expand All @@ -40,7 +40,7 @@ following methods:
```groovy
plugins {
// Add the plugin to the plugin block
id "nl.neotech.plugin.rootcoverage" version "1.9.0"
id "nl.neotech.plugin.rootcoverage" version "1.10.0"
}
```
</details>
Expand All @@ -56,7 +56,7 @@ following methods:
buildscript {
dependencies {
classpath 'nl.neotech.plugin:android-root-coverage-plugin:1.9.0'
classpath 'nl.neotech.plugin:android-root-coverage-plugin:1.10.0'
}
}
```
Expand Down Expand Up @@ -227,7 +227,8 @@ for specific modules:
# 4. Compatibility
| Version | [Android Gradle plugin version](https://developer.android.com/studio/releases/gradle-plugin#updating-gradle) | Gradle version |
|------------|--------------------------------------------------------------------------------------------------------------|------------------------|
| **1.9.0** | 8.6.0+ | 8.7+ |
| **1.10.0** | 8.8+ | 8.10.2+ |
| **1.9.0** | 8.6+ | 8.7+ |
| **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+ |
| **Note 1** | 8.0 - 8.3.0-alpha04 | n.a. |
| **1.7.1** | 7.4 | 7.5+ |
Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
POM_ARTIFACT_ID=android-root-coverage-plugin
VERSION_NAME=1.9.0
VERSION_NAME=1.10.0
POM_NAME=Android Root Coverage Plugin
POM_DESCRIPTION=A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.

0 comments on commit dc9f71c

Please sign in to comment.