Prepare for release 0.7.0

This commit is contained in:
Brian Norman
2021-02-04 17:00:24 -06:00
parent 8e6a991aec
commit a39bea1bda
4 changed files with 16 additions and 6 deletions
+10
View File
@@ -1,6 +1,16 @@
Change Log 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 ## Version 0.6.1
_2020-11-29_ _2020-11-29_
+4 -4
View File
@@ -75,8 +75,8 @@ Builds of the Gradle plugin are available through the
```kotlin ```kotlin
plugins { plugins {
kotlin("multiplatform") version "1.4.20" 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"
} }
``` ```
@@ -94,8 +94,8 @@ configure<com.bnorm.power.PowerAssertGradleExtension> {
## Kotlin IR ## Kotlin IR
Using this compiler plugin only works if the code is compiled using Kotlin 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, 1.4.30 and IR is enabled. This plugin supports all IR based compiler backends:
and Native! As Kotlin IR is still experimental, mileage may vary. JVM, JS, and Native!
##### Kotlin/JVM ##### Kotlin/JVM
```kotlin ```kotlin
+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.7.0"
} }
subprojects { subprojects {
+1 -1
View File
@@ -1,6 +1,6 @@
plugins { plugins {
kotlin("multiplatform") version "1.4.30" 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 { repositories {