From 6c1fc46c2e647865260349977f26cc4de010897e Mon Sep 17 00:00:00 2001 From: Brian Norman Date: Sat, 6 May 2023 09:27:48 -0500 Subject: [PATCH] Prepare for release 0.13.0 --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 5 +++-- build.gradle.kts | 2 +- sample/build.gradle.kts | 2 +- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13b0b960648..23b763d830d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ Change Log ========== +## Version 0.13.0 + +_2023-05-06_ + +**New** +* Support Kotlin 1.8.20 (#89). + +**Fixes** +* Correctly align `in` operator. (#96). + +## Version 0.12.2 + +_2023-04-09_ + +**Fixes** +* Correctly align `in` operator. (#95). + ## Version 0.12.1 _2023-04-08_ diff --git a/README.md b/README.md index bae8fb25a3b..48bf2ad95a4 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.7.0" - id("com.bnorm.power.kotlin-power-assert") version "0.12.1" + kotlin("multiplatform") version "1.8.20" + id("com.bnorm.power.kotlin-power-assert") version "0.13.0" } ``` @@ -167,6 +167,7 @@ it can be assumed to maintain compatibility with the next oldest version listed. | 1.5.20 | 0.10.0 | | 1.6.0 | 0.11.0 | | 1.7.0 | 0.12.0 | +| 1.8.20 | 0.13.0 | ## Kotlin IR diff --git a/build.gradle.kts b/build.gradle.kts index 74323ef6c14..a4d7f37b6ae 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -13,7 +13,7 @@ plugins { allprojects { group = "com.bnorm.power" - version = "0.13.0-SNAPSHOT" + version = "0.13.0" } allprojects { diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index 3ee19f1fd64..24bd2561fd3 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("multiplatform") version "1.8.20" - id("com.bnorm.power.kotlin-power-assert") version "0.12.1" + id("com.bnorm.power.kotlin-power-assert") version "0.13.0" } repositories {