From b77abbe1bf6d1f07872e67488eb6cca137a66f09 Mon Sep 17 00:00:00 2001 From: Brian Norman Date: Sun, 10 Jul 2022 13:18:02 -0500 Subject: [PATCH] Prepare for release 0.12.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 7 ++++--- build.gradle.kts | 2 +- sample/build.gradle.kts | 2 +- 4 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43b615351a1..18968001dba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ Change Log ========== +## Version 0.12.0 + +_2022-07-10_ + +**New** +* Support Kotlin 1.7.0 (#67). +* Allow excluding Gradle source sets from transformation (#55). + +**Fixes** +* Ignore smart casting from diagram (#60). +* Properly align `is` operator result (#59). +* Support JVM static functions for transformation (#52). + ## Version 0.11.0 _2021-11-18_ diff --git a/README.md b/README.md index 724f317c9ee..b59ffeea901 100644 --- a/README.md +++ b/README.md @@ -97,8 +97,8 @@ Builds of the Gradle plugin are available through the ```kotlin plugins { - kotlin("multiplatform") version "1.6.0" - id("com.bnorm.power.kotlin-power-assert") version "0.11.0" + kotlin("multiplatform") version "1.7.0" + id("com.bnorm.power.kotlin-power-assert") version "0.12.0" } ``` @@ -156,7 +156,7 @@ Kotlin was first introduced. If a version of Kotlin or this plugin is not listed it can be assumed to maintain compatibility with the next oldest version listed. | Kotlin Version | Plugin Version | -| -------------- | -------------- | +|----------------|----------------| | 1.3.60 | 0.1.0 | | 1.3.70 | 0.3.0 | | 1.4.0 | 0.4.0 | @@ -166,6 +166,7 @@ it can be assumed to maintain compatibility with the next oldest version listed. | 1.5.10 | 0.9.0 | | 1.5.20 | 0.10.0 | | 1.6.0 | 0.11.0 | +| 1.7.0 | 0.12.0 | ## Kotlin IR diff --git a/build.gradle.kts b/build.gradle.kts index cd252f9cdf7..29456bdbcef 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { allprojects { group = "com.bnorm.power" - version = "0.12.0-SNAPSHOT" + version = "0.12.0" } subprojects { diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index 32eb5f44e3e..98fb3a86ef0 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("multiplatform") version "1.7.0" - id("com.bnorm.power.kotlin-power-assert") version "0.11.0" + id("com.bnorm.power.kotlin-power-assert") version "0.12.0" } repositories {