Skip to content

Commit f182e70

Browse files
shanshinMGaetan89
andauthored
Release 0.9.3
Co-authored-by: Gaëtan Muller <[email protected]> PR #769
1 parent fd9521e commit f182e70

File tree

22 files changed

+47
-38
lines changed

22 files changed

+47
-38
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.9.3 / 2025-10-16
2+
===================
3+
## Kover Gradle Plugin
4+
### Bugfixes
5+
* [`#759`](https://github.com/Kotlin/kotlinx-kover/issues/759) Fixed locating of host tests for the multiplatform Android library
6+
* [`#766`](https://github.com/Kotlin/kotlinx-kover/issues/766) Fixed support of KSP plugin
7+
### Build features
8+
* Upgraded Gradle version to `9.1.0`
9+
110
0.9.2 / 2025-09-16
211
===================
312
## Kover Gradle Plugin

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Add the following to your top-level build file:
4040

4141
```kotlin
4242
plugins {
43-
id("org.jetbrains.kotlinx.kover") version "0.9.2"
43+
id("org.jetbrains.kotlinx.kover") version "0.9.3"
4444
}
4545
```
4646
</details>
@@ -50,7 +50,7 @@ plugins {
5050

5151
```groovy
5252
plugins {
53-
id 'org.jetbrains.kotlinx.kover' version '0.9.2'
53+
id 'org.jetbrains.kotlinx.kover' version '0.9.3'
5454
}
5555
```
5656
</details>
@@ -75,7 +75,7 @@ buildscript {
7575
}
7676

7777
dependencies {
78-
classpath("org.jetbrains.kotlinx:kover-gradle-plugin:0.9.2")
78+
classpath("org.jetbrains.kotlinx:kover-gradle-plugin:0.9.3")
7979
}
8080
}
8181

@@ -94,7 +94,7 @@ buildscript {
9494
mavenCentral()
9595
}
9696
dependencies {
97-
classpath 'org.jetbrains.kotlinx:kover-gradle-plugin:0.9.2'
97+
classpath 'org.jetbrains.kotlinx:kover-gradle-plugin:0.9.3'
9898
}
9999
}
100100
@@ -129,7 +129,7 @@ The Kover Maven Plugin can be applied by specifying build plugin
129129
<plugin>
130130
<groupId>org.jetbrains.kotlinx</groupId>
131131
<artifactId>kover-maven-plugin</artifactId>
132-
<version>0.9.2</version>
132+
<version>0.9.3</version>
133133
</plugin>
134134
```
135135

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
version=0.9.3-SNAPSHOT
1+
version=0.9.4-SNAPSHOT
22
group=org.jetbrains.kotlinx
33

44
# version of the latest release
5-
kover.release.version=0.9.2
5+
kover.release.version=0.9.3
66
kotlin.code.style=official

kover-gradle-plugin/docs/aggregated.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The main difference from the existing Kover Gradle Plugin is the reactive conten
88
To use the plugin, just add into a `settings.gradle.kts` file
99
```kotlin
1010
plugins {
11-
id("org.jetbrains.kotlinx.kover.aggregation") version "0.9.2"
11+
id("org.jetbrains.kotlinx.kover.aggregation") version "0.9.3"
1212
}
1313
```
1414
**There is no need to apply Kover plugin in other places, the `org.jetbrains.kotlinx.kover` plug-in should not be applied anywhere.**

kover-gradle-plugin/docs/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Add the following to your build file:
5555

5656
```kotlin
5757
plugins {
58-
id("org.jetbrains.kotlinx.kover") version "0.9.2"
58+
id("org.jetbrains.kotlinx.kover") version "0.9.3"
5959
}
6060
```
6161
For more information about application of the plugin, refer to the [relevant section](#apply-kover-gradle-plugin-in-project)
@@ -127,7 +127,7 @@ Add the following line to build file in each module of your Gradle build:
127127

128128
```kotlin
129129
plugins {
130-
id("org.jetbrains.kotlinx.kover") version "0.9.2"
130+
id("org.jetbrains.kotlinx.kover") version "0.9.3"
131131
}
132132
```
133133
It is recommended to apply the Kover Plugin in the root module, even if there is no source code or tests there.
@@ -225,7 +225,7 @@ Otherwise, the use of the plugin is identical to the use in the [multi-module Ko
225225
Add the following to the build file only in the `app` module of your Gradle build:
226226
```kotlin
227227
plugins {
228-
id("org.jetbrains.kotlinx.kover") version "0.9.2"
228+
id("org.jetbrains.kotlinx.kover") version "0.9.3"
229229
}
230230
```
231231

@@ -378,7 +378,7 @@ Add the following to build file in each module of your Gradle build:
378378

379379
```kotlin
380380
plugins {
381-
id("org.jetbrains.kotlinx.kover") version "0.9.2"
381+
id("org.jetbrains.kotlinx.kover") version "0.9.3"
382382
}
383383
```
384384
It is recommended to apply the Kover Plugin in the root module, even if there is no source code or tests there.
@@ -582,7 +582,7 @@ Add the following to build file in each module of your Gradle build:
582582

583583
```kotlin
584584
plugins {
585-
id("org.jetbrains.kotlinx.kover") version "0.9.2"
585+
id("org.jetbrains.kotlinx.kover") version "0.9.3"
586586
}
587587
```
588588
It is recommended to apply the Kover Plugin in the root module, even if there is no source code or tests there.
@@ -759,7 +759,7 @@ Add the following to your build file:
759759

760760
```kotlin
761761
plugins {
762-
id("org.jetbrains.kotlinx.kover") version "0.9.2"
762+
id("org.jetbrains.kotlinx.kover") version "0.9.3"
763763
}
764764
```
765765

@@ -777,7 +777,7 @@ buildscript {
777777
}
778778

779779
dependencies {
780-
classpath("org.jetbrains.kotlinx:kover-gradle-plugin:0.9.2")
780+
classpath("org.jetbrains.kotlinx:kover-gradle-plugin:0.9.3")
781781
}
782782
}
783783

@@ -793,7 +793,7 @@ buildscript {
793793
mavenCentral()
794794
}
795795
dependencies {
796-
classpath 'org.jetbrains.kotlinx:kover-gradle-plugin:0.9.2'
796+
classpath 'org.jetbrains.kotlinx:kover-gradle-plugin:0.9.3'
797797
}
798798
}
799799

kover-gradle-plugin/examples/android/dynamic/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ plugins {
33
id("com.android.library") version "8.12.0" apply false
44
id ("com.android.dynamic-feature") version "7.4.0" apply false
55
id("org.jetbrains.kotlin.android") version "2.2.20" apply false
6-
id("org.jetbrains.kotlinx.kover") version "0.9.2" apply false
6+
id("org.jetbrains.kotlinx.kover") version "0.9.3" apply false
77
}

kover-gradle-plugin/examples/android/flavors/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ plugins {
22
id("com.android.application") version "8.12.0" apply false
33
id("com.android.library") version "8.12.0" apply false
44
id("org.jetbrains.kotlin.android") version "2.2.20" apply false
5-
id("org.jetbrains.kotlinx.kover") version "0.9.2" apply false
5+
id("org.jetbrains.kotlinx.kover") version "0.9.3" apply false
66
}

kover-gradle-plugin/examples/android/minimal_groovy/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ plugins {
22
id 'com.android.application' version '8.12.0' apply false
33
id 'com.android.library' version '8.12.0' apply false
44
id 'org.jetbrains.kotlin.android' version '2.2.20' apply false
5-
id 'org.jetbrains.kotlinx.kover' version '0.9.2' apply false
5+
id 'org.jetbrains.kotlinx.kover' version '0.9.3' apply false
66
}

kover-gradle-plugin/examples/android/minimal_kts/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ plugins {
22
id("com.android.application") version "8.12.0" apply false
33
id("com.android.library") version "8.12.0" apply false
44
id("org.jetbrains.kotlin.android") version "2.2.20" apply false
5-
id("org.jetbrains.kotlinx.kover") version "0.9.2" apply false
5+
id("org.jetbrains.kotlinx.kover") version "0.9.3" apply false
66
}

kover-gradle-plugin/examples/android/multiplatform/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id("com.android.application") version "8.12.0" apply false
33
id("com.android.kotlin.multiplatform.library") version "8.12.0" apply false
44
kotlin("multiplatform") version ("2.2.20") apply false
5-
id("org.jetbrains.kotlinx.kover") version "0.9.2"
5+
id("org.jetbrains.kotlinx.kover") version "0.9.3"
66
}
77

88
dependencies {

0 commit comments

Comments
 (0)