Prepare for release 0.8.0
This commit is contained in:
@@ -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_
|
||||
|
||||
@@ -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
@@ -7,7 +7,7 @@ plugins {
|
||||
|
||||
allprojects {
|
||||
group = "com.bnorm.power"
|
||||
version = "0.8.0-SNAPSHOT"
|
||||
version = "0.8.0"
|
||||
}
|
||||
|
||||
subprojects {
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user