Skip to content

Commit

Permalink
Prepare for release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bnorm committed May 6, 2021
1 parent 892f619 commit 5fab745
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Change Log
==========

## Version 0.8.0

_2021-05-06_

**New**
* Compile against Kotlin 1.5.0 (#40).
* Support generic parameter diagramming (#39).
* Added support for `assertFalse` style functions.
* Added support for non-boolean functions.
* Support multiple parameter functions (#41).
* Added support for `assertEquals` style functions.
* Function signature must still end with a `String` or `() -> String` accepting parameter.

## Version 0.7.0

_2021-02-04_
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Builds of the Gradle plugin are available through the
```kotlin
plugins {
kotlin("multiplatform") version "1.5.0"
id("com.bnorm.power.kotlin-power-assert") version "0.7.0"
id("com.bnorm.power.kotlin-power-assert") version "0.8.0"
}
```

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.8.0-SNAPSHOT"
version = "0.8.0"
}

subprojects {
Expand Down
11 changes: 2 additions & 9 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,21 +1,14 @@
plugins {
kotlin("multiplatform") version "1.5.0"
id("com.bnorm.power.kotlin-power-assert") version "0.7.0"
id("com.bnorm.power.kotlin-power-assert") version "0.8.0"
}

repositories {
mavenCentral()
}

kotlin {
jvm {
compilations.all {
kotlinOptions {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.useIR = true
}
}
}
jvm()
js(IR) {
browser()
nodejs()
Expand Down

0 comments on commit 5fab745

Please sign in to comment.