File tree 4 files changed +12
-6
lines changed
src/functionalTest/kotlin/kotlinx/kover/test/functional/core
4 files changed +12
-6
lines changed Original file line number Diff line number Diff line change
1
+ v0.4.4 / 2021-11-29
2
+ ===================
3
+
4
+ ### Bugfixes
5
+ * Fixed escape characters in intellijreport.json (#82 )
6
+
1
7
v0.4.3 / 2021-11-29
2
8
===================
3
9
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ In top level build file
39
39
40
40
``` kotlin
41
41
plugins {
42
- id(" org.jetbrains.kotlinx.kover" ) version " 0.4.3 "
42
+ id(" org.jetbrains.kotlinx.kover" ) version " 0.4.4 "
43
43
}
44
44
```
45
45
</details >
@@ -49,7 +49,7 @@ plugins {
49
49
50
50
``` groovy
51
51
plugins {
52
- id 'org.jetbrains.kotlinx.kover' version '0.4.3 '
52
+ id 'org.jetbrains.kotlinx.kover' version '0.4.4 '
53
53
}
54
54
```
55
55
</details >
@@ -67,7 +67,7 @@ buildscript {
67
67
}
68
68
69
69
dependencies {
70
- classpath(" org.jetbrains.kotlinx:kover:0.4.3 " )
70
+ classpath(" org.jetbrains.kotlinx:kover:0.4.4 " )
71
71
}
72
72
}
73
73
@@ -84,7 +84,7 @@ buildscript {
84
84
mavenCentral()
85
85
}
86
86
dependencies {
87
- classpath 'org.jetbrains.kotlinx:kover:0.4.3 '
87
+ classpath 'org.jetbrains.kotlinx:kover:0.4.4 '
88
88
}
89
89
}
90
90
Original file line number Diff line number Diff line change 1
- version =0.4.3
1
+ version =0.4.4
2
2
group =org.jetbrains.kotlinx
3
3
4
4
kotlin.code.style =official
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ private class ProjectRunnerImpl(val rootDir: File) : ProjectRunner {
141
141
engines + = null
142
142
}
143
143
if (pluginVersion == null ) {
144
- pluginVersion = " 0.4.3 " // TODO read from properties
144
+ pluginVersion = " 0.4.4 " // TODO read from properties
145
145
}
146
146
147
147
languages.forEach { language ->
You can’t perform that action at this time.
0 commit comments