Prepare for release 0.5.3

This commit is contained in:
Brian Norman
2020-09-28 20:14:14 -05:00
parent d618452efd
commit b1c217bae6
4 changed files with 11 additions and 3 deletions
+8
View File
@@ -1,6 +1,14 @@
Change Log Change Log
========== ==========
## Version 0.5.3
_2020-09-28_
Bug Fixes:
* Fix member and extension function transformation.
* Fix generation of message lambda for non-inline functions.
## Version 0.5.2 ## Version 0.5.2
_2020-09-25_ _2020-09-25_
+1 -1
View File
@@ -76,7 +76,7 @@ Builds of the Gradle plugin are available through the
```kotlin ```kotlin
plugins { plugins {
kotlin("jvm") version "1.4.0" kotlin("jvm") version "1.4.0"
id("com.bnorm.power.kotlin-power-assert") version "0.5.2" id("com.bnorm.power.kotlin-power-assert") version "0.5.3"
} }
``` ```
+1 -1
View File
@@ -7,7 +7,7 @@ plugins {
allprojects { allprojects {
group = "com.bnorm.power" group = "com.bnorm.power"
version = "0.6.0-SNAPSHOT" version = "0.5.3"
} }
subprojects { subprojects {
+1 -1
View File
@@ -1,6 +1,6 @@
plugins { plugins {
kotlin("multiplatform") version "1.4.0" kotlin("multiplatform") version "1.4.0"
id("com.bnorm.power.kotlin-power-assert") version "0.5.2" id("com.bnorm.power.kotlin-power-assert") version "0.5.3"
} }
repositories { repositories {