Skip to content

Commit 07ae5e3

Browse files
committed
Release 0.5.0-RC2
1 parent abf8927 commit 07ae5e3

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

Diff for: CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
0.5.0-RC2 / 2022-01-14
2+
===================
3+
4+
In this version, the plugin API has been redesigned for more convenient and understandable work with multi-project
5+
builds and merged reports. Also added filters for report and verification tasks.
6+
7+
### Features
8+
* Added reports filtering (#17)
9+
* Disabled running of all test tasks for single-project Kover tasks (#114)
10+
* Upgraded IntelliJ Engine default version to `1.0.647`
11+
112
0.5.0-RC / 2021-12-24
213
===================
314

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ In top-level build file:
4141

4242
```kotlin
4343
plugins {
44-
id("org.jetbrains.kotlinx.kover") version "0.5.0-RC"
44+
id("org.jetbrains.kotlinx.kover") version "0.5.0-RC2"
4545
}
4646
```
4747
</details>
@@ -51,7 +51,7 @@ plugins {
5151

5252
```groovy
5353
plugins {
54-
id 'org.jetbrains.kotlinx.kover' version '0.5.0-RC'
54+
id 'org.jetbrains.kotlinx.kover' version '0.5.0-RC2'
5555
}
5656
```
5757
</details>
@@ -69,7 +69,7 @@ buildscript {
6969
}
7070

7171
dependencies {
72-
classpath("org.jetbrains.kotlinx:kover:0.5.0-RC")
72+
classpath("org.jetbrains.kotlinx:kover:0.5.0-RC2")
7373
}
7474
}
7575

@@ -86,7 +86,7 @@ buildscript {
8686
mavenCentral()
8787
}
8888
dependencies {
89-
classpath 'org.jetbrains.kotlinx:kover:0.5.0-RC'
89+
classpath 'org.jetbrains.kotlinx:kover:0.5.0-RC2'
9090
}
9191
}
9292

Diff for: gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=0.5.0-RC
1+
version=0.5.0-RC2
22
group=org.jetbrains.kotlinx
33

44
kotlin.code.style=official

Diff for: src/functionalTest/kotlin/kotlinx/kover/test/functional/core/Builder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ private class TestCaseBuilderImpl(
7373
state.engines += null
7474
}
7575
if (state.pluginVersion == null) {
76-
state.pluginVersion = "0.5.0-RC" // TODO read from properties
76+
state.pluginVersion = "0.5.0-RC2" // TODO read from properties
7777
}
7878

7979
val projects: MutableMap<ProjectSlice, File> = mutableMapOf()

0 commit comments

Comments
 (0)