Skip to content

Commit 7aadd75

Browse files
shanshinqwwdfsad
andauthored
Release 0.7.0-Alpha
Co-authored-by: Vsevolod Tolstopyatov <[email protected]>
1 parent 264e34b commit 7aadd75

File tree

10 files changed

+28
-10
lines changed

10 files changed

+28
-10
lines changed

Diff for: .github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If this is not feasible, give an example of the code on which the problem manife
2424
If applicable, report files or screenshots.
2525

2626
**Environment**
27-
- Kover Gradle Plugin version: [e.g. 0.6.1]
27+
- Kover Gradle Plugin version: [e.g. 0.7.0-Alpha]
2828
- Gradle version: [e.g. 7.5.1]
2929
- Kotlin project type: [e.g. Kotlin/JVM, Kotlin/Multiplatform, Kotlin/Android]
3030
- Coverage Engine version (if customized in build script): [e.g. DefaultJacocoEngine, KoverEngine("1.0.656")]

Diff for: CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
0.7.0-Alpha / 2023-02-27
2+
===================
3+
This is a preview version of new major release with the API rework in order to support configuration cache, project isolation model, Android Gradle plugin and source-set level granularity of configuration.
4+
This release is incompatible with the previous version, and we provide best-effort migration assistance as well as [migration guide](https://github.com/Kotlin/kotlinx-kover/blob/v0.7.0-Alpha/docs/migration-to-0.7.0.md)
5+
### Features
6+
* Implemented improved Kover DSL (#284)
7+
* Added Gradle project isolation support (#144)
8+
* Introduced API for Coverage Tools (#195)
9+
* Added support of Android build variants (#18)
10+
* Implemented support filtering of source sets for Kotlin JVM and Kotlin compilations for Kotlin multiplatform (#245)
11+
* Added customizable header in HTML report for Kover and JaCoCo report generator (#194)
12+
* Minimal and default Kover Tool versions upgraded to 1.0.709
13+
14+
### Bugfixes
15+
* Fixed `Cannot run Project.afterEvaluate` (#221)
16+
* Fixed missing report path in logs for cached HTML task (#283)
17+
18+
119
0.6.1 / 2022-10-03
220
===================
321

Diff for: examples/android/minimal_groovy/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ plugins {
22
id 'com.android.application' version '7.2.2' apply false
33
id 'com.android.library' version '7.2.2' apply false
44
id 'org.jetbrains.kotlin.android' version '1.7.21' apply false
5-
id 'org.jetbrains.kotlinx.kover' version '0.6.1' apply false
5+
id 'org.jetbrains.kotlinx.kover' version '0.7.0-Alpha' apply false
66
}

Diff for: examples/android/minimal_kts/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ plugins {
22
id("com.android.application") version "7.2.2" apply false
33
id("com.android.library") version "7.2.2" apply false
44
id("org.jetbrains.kotlin.android") version "1.7.21" apply false
5-
id("org.jetbrains.kotlinx.kover") version "0.6.1" apply false
5+
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha" apply false
66
}

Diff for: examples/android/multiproject/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ plugins {
22
id("com.android.application") version "7.2.2" apply false
33
id("com.android.library") version "7.2.2" apply false
44
id("org.jetbrains.kotlin.android") version "1.7.21" apply false
5-
id("org.jetbrains.kotlinx.kover") version "0.6.1" apply false
5+
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha" apply false
66
}

Diff for: examples/jvm/defaults/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("jvm") version "1.7.10"
3-
id("org.jetbrains.kotlinx.kover") version "0.6.1"
3+
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha"
44
}
55

66
repositories {

Diff for: examples/jvm/merged/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("jvm") version "1.7.10"
3-
id("org.jetbrains.kotlinx.kover") version "0.6.1"
3+
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha"
44
}
55

66
repositories {

Diff for: examples/jvm/minimal/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("jvm") version "1.7.10"
3-
id("org.jetbrains.kotlinx.kover") version "0.6.1"
3+
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha"
44
}
55

66
repositories {

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ version=0.7.0-SNAPSHOT
22
group=org.jetbrains.kotlinx
33

44
# version of the latest release
5-
kover.release.version=0.6.1
5+
kover.release.version=0.7.0-Alpha
66
kotlinVersion=1.7.10
77
kotlin.code.style=official

Diff for: src/main/kotlin/kotlinx/kover/gradle/plugin/dsl/KoverVersions.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ public object KoverVersions {
1515
/**
1616
* Minimal supported Kover coverage tool version.
1717
*/
18-
public const val KOVER_TOOL_MINIMAL_VERSION = "1.0.708"
18+
public const val KOVER_TOOL_MINIMAL_VERSION = "1.0.709"
1919

2020
/**
2121
* Kover coverage tool version used by default.
2222
*/
23-
public const val KOVER_TOOL_DEFAULT_VERSION = "1.0.708"
23+
public const val KOVER_TOOL_DEFAULT_VERSION = "1.0.709"
2424

2525
/**
2626
* JaCoCo coverage tool version used by default.

0 commit comments

Comments
 (0)