Skip to content

Commit

Permalink
Release 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
shanshin committed Nov 29, 2021
1 parent bedeb7a commit d8b1b3a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
v0.4.3 / 2021-11-29
===================

### Bugfixes
* Added support for the IntelliJ agent loaded from maven central (#34)
* Implemented the ability to generate a report even if there are no tests in the module (#44)
* Fixed caching of Kover report tasks (#68)
* Upgraded minimal IntelliJ agent version to `1.0.639` (#76)

### Internal features
* Implemented integration tests (#25)

v0.4.2 / 2021-11-14
===================

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ In top level build file

```kotlin
plugins {
id("org.jetbrains.kotlinx.kover") version "0.4.2"
id("org.jetbrains.kotlinx.kover") version "0.4.3"
}
```
</details>
Expand All @@ -49,7 +49,7 @@ plugins {

```groovy
plugins {
id 'org.jetbrains.kotlinx.kover' version '0.4.2'
id 'org.jetbrains.kotlinx.kover' version '0.4.3'
}
```
</details>
Expand All @@ -67,7 +67,7 @@ buildscript {
}

dependencies {
classpath("org.jetbrains.kotlinx:kover:0.4.2")
classpath("org.jetbrains.kotlinx:kover:0.4.3")
}
}

Expand All @@ -84,7 +84,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.jetbrains.kotlinx:kover:0.4.2'
classpath 'org.jetbrains.kotlinx:kover:0.4.3'
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.4.2
version=0.4.3
group=org.jetbrains.kotlinx

kotlin.code.style=official
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ private class ProjectRunnerImpl(val rootDir: File) : ProjectRunner {
engines += null
}
if (pluginVersion == null) {
pluginVersion = "0.4.2" // TODO read from properties
pluginVersion = "0.4.3" // TODO read from properties
}

languages.forEach { language ->
Expand Down

0 comments on commit d8b1b3a

Please sign in to comment.