Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit b7dd46f

Browse files
committed
Prepare for release 0.6.0
1 parent 5a747c8 commit b7dd46f

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change Log
22
==========
33

4+
## Version 0.6.0
5+
6+
_2020-11-21_
7+
8+
Changes:
9+
* Support Kotlin 1.4.20.
10+
411
## Version 0.5.3
512

613
_2020-09-28_

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ Builds of the Gradle plugin are available through the
7575

7676
```kotlin
7777
plugins {
78-
kotlin("jvm") version "1.4.20"
79-
id("com.bnorm.power.kotlin-power-assert") version "0.5.3"
78+
kotlin("multiplatform") version "1.4.20"
79+
id("com.bnorm.power.kotlin-power-assert") version "0.6.0"
8080
}
8181
```
8282

@@ -87,7 +87,7 @@ form which also takes a String or String producing lambda.
8787

8888
```kotlin
8989
configure<com.bnorm.power.PowerAssertGradleExtension> {
90-
functions = listOf("kotlin.test.assertTrue", "kotlin.require")
90+
functions = listOf("kotlin.assert", "kotlin.test.assertTrue")
9191
}
9292
```
9393

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
allprojects {
99
group = "com.bnorm.power"
10-
version = "0.6.0-SNAPSHOT"
10+
version = "0.6.0"
1111
}
1212

1313
subprojects {

sample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("multiplatform") version "1.4.20"
3-
id("com.bnorm.power.kotlin-power-assert") version "0.5.3"
3+
id("com.bnorm.power.kotlin-power-assert") version "0.6.0"
44
}
55

66
repositories {

0 commit comments

Comments
 (0)