diff --git a/CHANGELOG.md b/CHANGELOG.md index b022a2d3985..dfd85c48312 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,16 @@ Change Log ========== -## Version 0.5. +## Version 0.5.2 + +_2020-09-25_ + +Bug Fixes: + * Skip transformation if entire expression is constant (`true` or `false`). + * Fix inlining of lambda parameter to transformed function call on Kotlin/JS + and Kotlin/Native. + +## Version 0.5.1 _2020-09-14_ diff --git a/README.md b/README.md index a583aee9c14..45aafee73e2 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ Builds of the Gradle plugin are available through the ```kotlin plugins { kotlin("jvm") version "1.4.0" - id("com.bnorm.power.kotlin-power-assert") version "0.5.1" + id("com.bnorm.power.kotlin-power-assert") version "0.5.2" } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 7d45bbc7d83..8f421ba157d 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.5.2" } subprojects { diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index b366bbe7f47..b89bfadfc1b 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("multiplatform") version "1.4.0" - id("com.bnorm.power.kotlin-power-assert") version "0.5.1" + id("com.bnorm.power.kotlin-power-assert") version "0.5.2" } repositories {