From 27ace23ea0326c95c75d42e3a85253e787427686 Mon Sep 17 00:00:00 2001 From: Brian Norman Date: Sun, 29 Nov 2020 18:31:21 -0600 Subject: [PATCH] Prepare for release 0.6.1 --- CHANGELOG.md | 26 +++++++++++++++++--------- README.md | 2 +- build.gradle.kts | 2 +- sample/build.gradle.kts | 2 +- 4 files changed, 20 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c2e2c66ed6..af02830cf0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,19 @@ Change Log ========== +## Version 0.6.1 + +_2020-11-29_ + +Fixes: + * Better support for arithmetic in assertion condition (#27). + ## Version 0.6.0 _2020-11-21_ Changes: -* Support Kotlin 1.4.20. + * Support Kotlin 1.4.20. ## Version 0.5.3 @@ -21,22 +28,23 @@ Bug Fixes: _2020-09-25_ 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 - and Kotlin/Native. + and Kotlin/Native (#22). ## Version 0.5.1 _2020-09-14_ Bug Fixes: - * Support Windows-style line-separators in compiled files. + * Support Windows-style line-separators in compiled files (#20). ## Version 0.5.0 _2020-08-29_ - * Support for Kotlin/Native. + * Support for Kotlin/Native (#18). ## Version 0.4.0 @@ -49,7 +57,7 @@ _2020-08-21_ _2020-05-25_ * Fix: Do not include wrapper class for top-level function in Gradle plugin - default function. + default function (#13). ## Version 0.3.0 @@ -57,15 +65,15 @@ _2020-03-07_ * Support Kotlin 1.3.70. * 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 _2020-02-12_ * Support configuring of which functions are transformed (eg, assert, require, - check, assertTrue). This works for any function which takes a Boolean and a - String. + check, assertTrue). This works for any function which takes a Boolean and a + String. * Support Boolean expressions which are split onto multiple lines. ## Version 0.1.0 diff --git a/README.md b/README.md index eebc38191fd..54335c82321 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ Builds of the Gradle plugin are available through the ```kotlin plugins { 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" } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 7915da93fe2..1ebac0024a4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { allprojects { group = "com.bnorm.power" - version = "0.7.0-SNAPSHOT" + version = "0.6.1" } subprojects { diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index cbd08ea2ec1..174428d60ad 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.6.0" + id("com.bnorm.power.kotlin-power-assert") version "0.6.1" } repositories {