Prepare for release 0.8.0

This commit is contained in:
Brian Norman
2021-05-06 17:19:30 -05:00
parent 892f619371
commit 5fab745be9
4 changed files with 17 additions and 11 deletions
+13
View File
@@ -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_
+1 -1
View File
@@ -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"
}
```
+1 -1
View File
@@ -7,7 +7,7 @@ plugins {
allprojects {
group = "com.bnorm.power"
version = "0.8.0-SNAPSHOT"
version = "0.8.0"
}
subprojects {
+2 -9
View File
@@ -1,6 +1,6 @@
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 {
@@ -8,14 +8,7 @@ repositories {
}
kotlin {
jvm {
compilations.all {
kotlinOptions {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.useIR = true
}
}
}
jvm()
js(IR) {
browser()
nodejs()