Prepare for release 0.5.2

This commit is contained in:
Brian Norman
2020-09-25 18:25:19 -05:00
parent 0987c43ad8
commit 602acc9a6e
4 changed files with 13 additions and 4 deletions
+10 -1
View File
@@ -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_
+1 -1
View File
@@ -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"
}
```
+1 -1
View File
@@ -7,7 +7,7 @@ plugins {
allprojects {
group = "com.bnorm.power"
version = "0.6.0-SNAPSHOT"
version = "0.5.2"
}
subprojects {
+1 -1
View File
@@ -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 {