diff --git a/CHANGELOG.md b/CHANGELOG.md index 79f9498fe05..0c2e2c66ed6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log ========== +## Version 0.6.0 + +_2020-11-21_ + +Changes: +* Support Kotlin 1.4.20. + ## Version 0.5.3 _2020-09-28_ diff --git a/README.md b/README.md index 43dc48ecbb9..eebc38191fd 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ Builds of the Gradle plugin are available through the ```kotlin plugins { - kotlin("jvm") version "1.4.20" - id("com.bnorm.power.kotlin-power-assert") version "0.5.3" + kotlin("multiplatform") version "1.4.20" + id("com.bnorm.power.kotlin-power-assert") version "0.6.0" } ``` @@ -87,7 +87,7 @@ form which also takes a String or String producing lambda. ```kotlin configure { - functions = listOf("kotlin.test.assertTrue", "kotlin.require") + functions = listOf("kotlin.assert", "kotlin.test.assertTrue") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index cedc954ae92..dc85cbec980 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { allprojects { group = "com.bnorm.power" - version = "0.6.0-SNAPSHOT" + version = "0.6.0" } subprojects { diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index a3c4713b169..cbd08ea2ec1 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("multiplatform") version "1.4.20" - id("com.bnorm.power.kotlin-power-assert") version "0.5.3" + id("com.bnorm.power.kotlin-power-assert") version "0.6.0" } repositories {