Prepare for release 0.6.1

This commit is contained in:
Brian Norman
2020-11-29 18:31:21 -06:00
parent fbe44d177b
commit 27ace23ea0
4 changed files with 20 additions and 12 deletions
+17 -9
View File
@@ -1,12 +1,19 @@
Change Log Change Log
========== ==========
## Version 0.6.1
_2020-11-29_
Fixes:
* Better support for arithmetic in assertion condition (#27).
## Version 0.6.0 ## Version 0.6.0
_2020-11-21_ _2020-11-21_
Changes: Changes:
* Support Kotlin 1.4.20. * Support Kotlin 1.4.20.
## Version 0.5.3 ## Version 0.5.3
@@ -21,22 +28,23 @@ Bug Fixes:
_2020-09-25_ _2020-09-25_
Bug Fixes: Bug Fixes:
* Skip transformation if entire expression is constant (`true` or `false`). * Skip transformation if entire expression is constant (`true` or `false`)
(#23).
* Fix inlining of lambda parameter to transformed function call on Kotlin/JS * Fix inlining of lambda parameter to transformed function call on Kotlin/JS
and Kotlin/Native. and Kotlin/Native (#22).
## Version 0.5.1 ## Version 0.5.1
_2020-09-14_ _2020-09-14_
Bug Fixes: Bug Fixes:
* Support Windows-style line-separators in compiled files. * Support Windows-style line-separators in compiled files (#20).
## Version 0.5.0 ## Version 0.5.0
_2020-08-29_ _2020-08-29_
* Support for Kotlin/Native. * Support for Kotlin/Native (#18).
## Version 0.4.0 ## Version 0.4.0
@@ -49,7 +57,7 @@ _2020-08-21_
_2020-05-25_ _2020-05-25_
* Fix: Do not include wrapper class for top-level function in Gradle plugin * Fix: Do not include wrapper class for top-level function in Gradle plugin
default function. default function (#13).
## Version 0.3.0 ## Version 0.3.0
@@ -57,15 +65,15 @@ _2020-03-07_
* Support Kotlin 1.3.70. * Support Kotlin 1.3.70.
* Fix: Including Kotlin wrapper class for top-level functions in Gradle * Fix: Including Kotlin wrapper class for top-level functions in Gradle
configuration is no longer required. configuration is no longer required.
## Version 0.2.0 ## Version 0.2.0
_2020-02-12_ _2020-02-12_
* Support configuring of which functions are transformed (eg, assert, require, * Support configuring of which functions are transformed (eg, assert, require,
check, assertTrue). This works for any function which takes a Boolean and a check, assertTrue). This works for any function which takes a Boolean and a
String. String.
* Support Boolean expressions which are split onto multiple lines. * Support Boolean expressions which are split onto multiple lines.
## Version 0.1.0 ## Version 0.1.0
+1 -1
View File
@@ -76,7 +76,7 @@ Builds of the Gradle plugin are available through the
```kotlin ```kotlin
plugins { plugins {
kotlin("multiplatform") version "1.4.20" kotlin("multiplatform") version "1.4.20"
id("com.bnorm.power.kotlin-power-assert") version "0.6.0" id("com.bnorm.power.kotlin-power-assert") version "0.6.1"
} }
``` ```
+1 -1
View File
@@ -7,7 +7,7 @@ plugins {
allprojects { allprojects {
group = "com.bnorm.power" group = "com.bnorm.power"
version = "0.7.0-SNAPSHOT" version = "0.6.1"
} }
subprojects { subprojects {
+1 -1
View File
@@ -1,6 +1,6 @@
plugins { plugins {
kotlin("multiplatform") version "1.4.20" kotlin("multiplatform") version "1.4.20"
id("com.bnorm.power.kotlin-power-assert") version "0.6.0" id("com.bnorm.power.kotlin-power-assert") version "0.6.1"
} }
repositories { repositories {