Skip to content

Commit 27c8beb

Browse files
committed
Release 0.4.4
1 parent 2334afe commit 27c8beb

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

Diff for: CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v0.4.4 / 2021-11-29
2+
===================
3+
4+
### Bugfixes
5+
* Fixed escape characters in intellijreport.json (#82)
6+
17
v0.4.3 / 2021-11-29
28
===================
39

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In top level build file
3939

4040
```kotlin
4141
plugins {
42-
id("org.jetbrains.kotlinx.kover") version "0.4.3"
42+
id("org.jetbrains.kotlinx.kover") version "0.4.4"
4343
}
4444
```
4545
</details>
@@ -49,7 +49,7 @@ plugins {
4949

5050
```groovy
5151
plugins {
52-
id 'org.jetbrains.kotlinx.kover' version '0.4.3'
52+
id 'org.jetbrains.kotlinx.kover' version '0.4.4'
5353
}
5454
```
5555
</details>
@@ -67,7 +67,7 @@ buildscript {
6767
}
6868

6969
dependencies {
70-
classpath("org.jetbrains.kotlinx:kover:0.4.3")
70+
classpath("org.jetbrains.kotlinx:kover:0.4.4")
7171
}
7272
}
7373

@@ -84,7 +84,7 @@ buildscript {
8484
mavenCentral()
8585
}
8686
dependencies {
87-
classpath 'org.jetbrains.kotlinx:kover:0.4.3'
87+
classpath 'org.jetbrains.kotlinx:kover:0.4.4'
8888
}
8989
}
9090

Diff for: gradle.properties

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

44
kotlin.code.style=official

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private class ProjectRunnerImpl(val rootDir: File) : ProjectRunner {
141141
engines += null
142142
}
143143
if (pluginVersion == null) {
144-
pluginVersion = "0.4.3" // TODO read from properties
144+
pluginVersion = "0.4.4" // TODO read from properties
145145
}
146146

147147
languages.forEach { language ->

0 commit comments

Comments
 (0)