Skip to content

Commit 0fcc584

Browse files
shanshinqwwdfsad
andauthored
Release 0.6.0
Co-authored-by: Vsevolod Tolstopyatov <[email protected]>
1 parent a0ff8d9 commit 0fcc584

File tree

5 files changed

+47
-8
lines changed

5 files changed

+47
-8
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
0.6.0 / 2022-08-23
2+
===================
3+
Note that this is a full changelog relative to `0.6.0` version. Changelog relative to `0.6.0-Beta` can be found at the end of the changelog.
4+
5+
In this version, the plugin API has been completely redesigned. The new API allows you to configure Kover in a more flexible manner, there is no need to configure Kover or test tasks separately.
6+
7+
Please refer to [migration guide](https://github.com/Kotlin/kotlinx-kover/blob/v0.6.0/docs/migration-to-0.6.0.md) in order to migrate from previous versions.
8+
9+
### Features
10+
* Implemented a new plugin API (#19)
11+
* Added support of instruction and branch counters for verification tasks (#128)
12+
* Ordered report tasks before verification tasks (#209)
13+
* Minimal and default agent versions upgraded to 1.0.680
14+
15+
### Bugfixes
16+
* Verification task is no longer executed if there are no rules (#168)
17+
* Added instrumentation filtering by common filters (#201)
18+
* Fixed instrumentation counter in IntelliJ verifier (#210, #211, #212)
19+
20+
### Internal features
21+
* Kotlin version upgraded to 1.7.10
22+
* instrumentation config added to the test framework
23+
* added test on instrumentation config
24+
25+
#### Documentation
26+
* Updated docs for onCheck properties (#213)
27+
28+
### Changelog relative to version `0.6.0-Beta`
29+
#### Features
30+
* Ordered report tasks before verification (#209)
31+
* Minimal and default agent versions upgraded to 1.0.680
32+
33+
#### Bugfixes
34+
* Added instrumentation filtering by common filters (#201)
35+
* Fixed instrumentation counter in IntelliJ verifier (#210, #211, #212)
36+
37+
#### Documentation
38+
* Updated docs for onCheck properties (#213)
39+
140
0.6.0-Beta / 2022-08-02
241
===================
342
In this version, the plugin API has been fully redesigned. The new API allows you to configure Kover in a more flexible manner, there is no need to configure Kover or test tasks separately.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ In top-level build file:
4343

4444
```kotlin
4545
plugins {
46-
id("org.jetbrains.kotlinx.kover") version "0.6.0-Beta"
46+
id("org.jetbrains.kotlinx.kover") version "0.6.0"
4747
}
4848
```
4949
</details>
@@ -53,7 +53,7 @@ plugins {
5353

5454
```groovy
5555
plugins {
56-
id 'org.jetbrains.kotlinx.kover' version '0.6.0-Beta'
56+
id 'org.jetbrains.kotlinx.kover' version '0.6.0'
5757
}
5858
```
5959
</details>
@@ -71,7 +71,7 @@ buildscript {
7171
}
7272

7373
dependencies {
74-
classpath("org.jetbrains.kotlinx:kover:0.6.0-Beta")
74+
classpath("org.jetbrains.kotlinx:kover:0.6.0")
7575
}
7676
}
7777

@@ -88,7 +88,7 @@ buildscript {
8888
mavenCentral()
8989
}
9090
dependencies {
91-
classpath 'org.jetbrains.kotlinx:kover:0.6.0-Beta'
91+
classpath 'org.jetbrains.kotlinx:kover:0.6.0'
9292
}
9393
}
9494
@@ -515,7 +515,7 @@ kotlinx.kover.api.DefaultIntellijEngine.INSTANCE
515515

516516
#### IntelliJ Coverage Engine with custom version
517517
```
518-
kotlinx.kover.api.IntellijEngine("1.0.668")
518+
kotlinx.kover.api.IntellijEngine("1.0.680")
519519
```
520520

521521
#### JaCoCo Coverage Engine with default version

docs/migration-to-0.6.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Kover migration guide from 0.5.x to 0.6.0-Beta
1+
# Kover migration guide from 0.5.x to 0.6.0
22

33
The new API allows you to configure Kover in a more flexible manner, while being more concise than the previous API.
44
From now on, there is no need to configure Kover or test tasks separately.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=0.6.0-Beta-SNAPSHOT
1+
version=0.6.0-SNAPSHOT
22
group=org.jetbrains.kotlinx
33

44
kotlinVersion=1.7.10

src/main/kotlin/kotlinx/kover/api/KoverConstants.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ public object KoverVersions {
4343
}
4444

4545
public object KoverMigrations {
46-
public const val MIGRATION_0_5_TO_0_6 = "https://github.com/Kotlin/kotlinx-kover/blob/v0.6.0-Beta/docs/migration-to-0.6.0.md"
46+
public const val MIGRATION_0_5_TO_0_6 = "https://github.com/Kotlin/kotlinx-kover/blob/v0.6.0/docs/migration-to-0.6.0.md"
4747
}

0 commit comments

Comments
 (0)