Skip to content

Commit

Permalink
Release 0.7.0-Alpha
Browse files Browse the repository at this point in the history
Co-authored-by: Vsevolod Tolstopyatov <qwwdfsad@gmail.com>
  • Loading branch information
shanshin and qwwdfsad committed Feb 27, 2023
1 parent 264e34b commit 7aadd75
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If this is not feasible, give an example of the code on which the problem manife
If applicable, report files or screenshots.

**Environment**
- Kover Gradle Plugin version: [e.g. 0.6.1]
- Kover Gradle Plugin version: [e.g. 0.7.0-Alpha]
- Gradle version: [e.g. 7.5.1]
- Kotlin project type: [e.g. Kotlin/JVM, Kotlin/Multiplatform, Kotlin/Android]
- Coverage Engine version (if customized in build script): [e.g. DefaultJacocoEngine, KoverEngine("1.0.656")]
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
0.7.0-Alpha / 2023-02-27
===================
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.
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)
### Features
* Implemented improved Kover DSL (#284)
* Added Gradle project isolation support (#144)
* Introduced API for Coverage Tools (#195)
* Added support of Android build variants (#18)
* Implemented support filtering of source sets for Kotlin JVM and Kotlin compilations for Kotlin multiplatform (#245)
* Added customizable header in HTML report for Kover and JaCoCo report generator (#194)
* Minimal and default Kover Tool versions upgraded to 1.0.709

### Bugfixes
* Fixed `Cannot run Project.afterEvaluate` (#221)
* Fixed missing report path in logs for cached HTML task (#283)


0.6.1 / 2022-10-03
===================

Expand Down
2 changes: 1 addition & 1 deletion examples/android/minimal_groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.21' apply false
id 'org.jetbrains.kotlinx.kover' version '0.6.1' apply false
id 'org.jetbrains.kotlinx.kover' version '0.7.0-Alpha' apply false
}
2 changes: 1 addition & 1 deletion examples/android/minimal_kts/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ plugins {
id("com.android.application") version "7.2.2" apply false
id("com.android.library") version "7.2.2" apply false
id("org.jetbrains.kotlin.android") version "1.7.21" apply false
id("org.jetbrains.kotlinx.kover") version "0.6.1" apply false
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha" apply false
}
2 changes: 1 addition & 1 deletion examples/android/multiproject/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ plugins {
id("com.android.application") version "7.2.2" apply false
id("com.android.library") version "7.2.2" apply false
id("org.jetbrains.kotlin.android") version "1.7.21" apply false
id("org.jetbrains.kotlinx.kover") version "0.6.1" apply false
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha" apply false
}
2 changes: 1 addition & 1 deletion examples/jvm/defaults/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.7.10"
id("org.jetbrains.kotlinx.kover") version "0.6.1"
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jvm/merged/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.7.10"
id("org.jetbrains.kotlinx.kover") version "0.6.1"
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jvm/minimal/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.7.10"
id("org.jetbrains.kotlinx.kover") version "0.6.1"
id("org.jetbrains.kotlinx.kover") version "0.7.0-Alpha"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ version=0.7.0-SNAPSHOT
group=org.jetbrains.kotlinx

# version of the latest release
kover.release.version=0.6.1
kover.release.version=0.7.0-Alpha
kotlinVersion=1.7.10
kotlin.code.style=official
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ public object KoverVersions {
/**
* Minimal supported Kover coverage tool version.
*/
public const val KOVER_TOOL_MINIMAL_VERSION = "1.0.708"
public const val KOVER_TOOL_MINIMAL_VERSION = "1.0.709"

/**
* Kover coverage tool version used by default.
*/
public const val KOVER_TOOL_DEFAULT_VERSION = "1.0.708"
public const val KOVER_TOOL_DEFAULT_VERSION = "1.0.709"

/**
* JaCoCo coverage tool version used by default.
Expand Down

0 comments on commit 7aadd75

Please sign in to comment.