From 0d15acbe575af01b3c9e20648080e73df8ba9302 Mon Sep 17 00:00:00 2001 From: Rolf Smit Date: Thu, 6 Feb 2025 23:50:25 +0100 Subject: [PATCH] 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+ --- README.md | 9 +++++---- plugin/gradle.properties | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b25847c..84aff4a 100644 --- a/README.md +++ b/README.md @@ -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" } ``` @@ -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" } ``` @@ -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' } } ``` @@ -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
8.4.2
8.3.0-alpha05 - 8.3.2 | 8.6+
8.5+
8.4+ | | **Note 1** | 8.0 - 8.3.0-alpha04 | n.a. | | **1.7.1** | 7.4 | 7.5+ | diff --git a/plugin/gradle.properties b/plugin/gradle.properties index 7016436..47ea71f 100644 --- a/plugin/gradle.properties +++ b/plugin/gradle.properties @@ -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.