From a39bea1bda7ed932d8b1c9455b49be03fbb98275 Mon Sep 17 00:00:00 2001 From: Brian Norman Date: Thu, 4 Feb 2021 17:00:24 -0600 Subject: [PATCH] Prepare for release 0.7.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 8 ++++---- build.gradle.kts | 2 +- sample/build.gradle.kts | 2 +- 4 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af02830..ac1f900 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Change Log ========== +## Version 0.7.0 + +_2021-02-04_ + +**New** +* Support Kotlin 1.4.30. + +**Fixes** +* Regex `matches` function formats poorly and exception (#31). + ## Version 0.6.1 _2020-11-29_ diff --git a/README.md b/README.md index 54335c8..fede810 100644 --- a/README.md +++ b/README.md @@ -75,8 +75,8 @@ 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.1" + kotlin("multiplatform") version "1.4.30" + id("com.bnorm.power.kotlin-power-assert") version "0.7.0" } ``` @@ -94,8 +94,8 @@ configure { ## Kotlin IR Using this compiler plugin only works if the code is compiled using Kotlin -1.4.20 and IR is enabled. This includes all IR based compiler backends: JVM, JS, -and Native! As Kotlin IR is still experimental, mileage may vary. +1.4.30 and IR is enabled. This plugin supports all IR based compiler backends: +JVM, JS, and Native! ##### Kotlin/JVM ```kotlin diff --git a/build.gradle.kts b/build.gradle.kts index 36803a7..4261aec 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.7.0" } subprojects { diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index cc92129..f76fdb0 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("multiplatform") version "1.4.30" - id("com.bnorm.power.kotlin-power-assert") version "0.6.1" + id("com.bnorm.power.kotlin-power-assert") version "0.7.0" } repositories {