File tree 4 files changed +17
-6
lines changed
src/functionalTest/kotlin/kotlinx/kover/test/functional/core
4 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
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
+
1
12
0.5.0-RC / 2021-12-24
2
13
===================
3
14
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ In top-level build file:
41
41
42
42
``` kotlin
43
43
plugins {
44
- id(" org.jetbrains.kotlinx.kover" ) version " 0.5.0-RC "
44
+ id(" org.jetbrains.kotlinx.kover" ) version " 0.5.0-RC2 "
45
45
}
46
46
```
47
47
</details >
@@ -51,7 +51,7 @@ plugins {
51
51
52
52
``` groovy
53
53
plugins {
54
- id 'org.jetbrains.kotlinx.kover' version '0.5.0-RC '
54
+ id 'org.jetbrains.kotlinx.kover' version '0.5.0-RC2 '
55
55
}
56
56
```
57
57
</details >
@@ -69,7 +69,7 @@ buildscript {
69
69
}
70
70
71
71
dependencies {
72
- classpath(" org.jetbrains.kotlinx:kover:0.5.0-RC " )
72
+ classpath(" org.jetbrains.kotlinx:kover:0.5.0-RC2 " )
73
73
}
74
74
}
75
75
@@ -86,7 +86,7 @@ buildscript {
86
86
mavenCentral()
87
87
}
88
88
dependencies {
89
- classpath 'org.jetbrains.kotlinx:kover:0.5.0-RC '
89
+ classpath 'org.jetbrains.kotlinx:kover:0.5.0-RC2 '
90
90
}
91
91
}
92
92
Original file line number Diff line number Diff line change 1
- version =0.5.0-RC
1
+ version =0.5.0-RC2
2
2
group =org.jetbrains.kotlinx
3
3
4
4
kotlin.code.style =official
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ private class TestCaseBuilderImpl(
73
73
state.engines + = null
74
74
}
75
75
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
77
77
}
78
78
79
79
val projects: MutableMap <ProjectSlice , File > = mutableMapOf ()
You can’t perform that action at this time.
0 commit comments