Skip to content

Commit

Permalink
Release 0.5.0-RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
shanshin committed Jan 14, 2022
1 parent abf8927 commit 07ae5e3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
0.5.0-RC2 / 2022-01-14
===================

In this version, the plugin API has been redesigned for more convenient and understandable work with multi-project
builds and merged reports. Also added filters for report and verification tasks.

### Features
* Added reports filtering (#17)
* Disabled running of all test tasks for single-project Kover tasks (#114)
* Upgraded IntelliJ Engine default version to `1.0.647`

0.5.0-RC / 2021-12-24
===================

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

```kotlin
plugins {
id("org.jetbrains.kotlinx.kover") version "0.5.0-RC"
id("org.jetbrains.kotlinx.kover") version "0.5.0-RC2"
}
```
</details>
Expand All @@ -51,7 +51,7 @@ plugins {

```groovy
plugins {
id 'org.jetbrains.kotlinx.kover' version '0.5.0-RC'
id 'org.jetbrains.kotlinx.kover' version '0.5.0-RC2'
}
```
</details>
Expand All @@ -69,7 +69,7 @@ buildscript {
}

dependencies {
classpath("org.jetbrains.kotlinx:kover:0.5.0-RC")
classpath("org.jetbrains.kotlinx:kover:0.5.0-RC2")
}
}

Expand All @@ -86,7 +86,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'org.jetbrains.kotlinx:kover:0.5.0-RC'
classpath 'org.jetbrains.kotlinx:kover:0.5.0-RC2'
}
}
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.5.0-RC
version=0.5.0-RC2
group=org.jetbrains.kotlinx

kotlin.code.style=official
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private class TestCaseBuilderImpl(
state.engines += null
}
if (state.pluginVersion == null) {
state.pluginVersion = "0.5.0-RC" // TODO read from properties
state.pluginVersion = "0.5.0-RC2" // TODO read from properties
}

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

0 comments on commit 07ae5e3

Please sign in to comment.