Skip to content

Commit a39bea1

Browse files
committed
Prepare for release 0.7.0
1 parent 8e6a991 commit a39bea1

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Change Log
22
==========
33

4+
## Version 0.7.0
5+
6+
_2021-02-04_
7+
8+
**New**
9+
* Support Kotlin 1.4.30.
10+
11+
**Fixes**
12+
* Regex `matches` function formats poorly and exception (#31).
13+
414
## Version 0.6.1
515

616
_2020-11-29_

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ Builds of the Gradle plugin are available through the
7575

7676
```kotlin
7777
plugins {
78-
kotlin("multiplatform") version "1.4.20"
79-
id("com.bnorm.power.kotlin-power-assert") version "0.6.1"
78+
kotlin("multiplatform") version "1.4.30"
79+
id("com.bnorm.power.kotlin-power-assert") version "0.7.0"
8080
}
8181
```
8282

@@ -94,8 +94,8 @@ configure<com.bnorm.power.PowerAssertGradleExtension> {
9494
## Kotlin IR
9595

9696
Using this compiler plugin only works if the code is compiled using Kotlin
97-
1.4.20 and IR is enabled. This includes all IR based compiler backends: JVM, JS,
98-
and Native! As Kotlin IR is still experimental, mileage may vary.
97+
1.4.30 and IR is enabled. This plugin supports all IR based compiler backends:
98+
JVM, JS, and Native!
9999

100100
##### Kotlin/JVM
101101
```kotlin

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
allprojects {
99
group = "com.bnorm.power"
10-
version = "0.7.0-SNAPSHOT"
10+
version = "0.7.0"
1111
}
1212

1313
subprojects {

sample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("multiplatform") version "1.4.30"
3-
id("com.bnorm.power.kotlin-power-assert") version "0.6.1"
3+
id("com.bnorm.power.kotlin-power-assert") version "0.7.0"
44
}
55

66
repositories {

0 commit comments

Comments
 (0)