Skip to content

Commit

Permalink
Prepare for release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bnorm committed Feb 4, 2021
1 parent 8e6a991 commit a39bea1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand All @@ -94,8 +94,8 @@ configure<com.bnorm.power.PowerAssertGradleExtension> {
## 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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = "com.bnorm.power"
version = "0.7.0-SNAPSHOT"
version = "0.7.0"
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit a39bea1

Please sign in to comment.