File tree 4 files changed +17
-11
lines changed
4 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
==========
3
3
4
+ ## Version 0.8.0
5
+
6
+ _ 2021-05-06_
7
+
8
+ ** New**
9
+ * Compile against Kotlin 1.5.0 (#40 ).
10
+ * Support generic parameter diagramming (#39 ).
11
+ * Added support for ` assertFalse ` style functions.
12
+ * Added support for non-boolean functions.
13
+ * Support multiple parameter functions (#41 ).
14
+ * Added support for ` assertEquals ` style functions.
15
+ * Function signature must still end with a ` String ` or ` () -> String ` accepting parameter.
16
+
4
17
## Version 0.7.0
5
18
6
19
_ 2021-02-04_
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ Builds of the Gradle plugin are available through the
98
98
``` kotlin
99
99
plugins {
100
100
kotlin(" multiplatform" ) version " 1.5.0"
101
- id(" com.bnorm.power.kotlin-power-assert" ) version " 0.7 .0"
101
+ id(" com.bnorm.power.kotlin-power-assert" ) version " 0.8 .0"
102
102
}
103
103
```
104
104
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
7
7
8
8
allprojects {
9
9
group = " com.bnorm.power"
10
- version = " 0.8.0-SNAPSHOT "
10
+ version = " 0.8.0"
11
11
}
12
12
13
13
subprojects {
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
kotlin(" multiplatform" ) version " 1.5.0"
3
- id(" com.bnorm.power.kotlin-power-assert" ) version " 0.7 .0"
3
+ id(" com.bnorm.power.kotlin-power-assert" ) version " 0.8 .0"
4
4
}
5
5
6
6
repositories {
7
7
mavenCentral()
8
8
}
9
9
10
10
kotlin {
11
- jvm {
12
- compilations.all {
13
- kotlinOptions {
14
- kotlinOptions.jvmTarget = " 1.8"
15
- kotlinOptions.useIR = true
16
- }
17
- }
18
- }
11
+ jvm()
19
12
js(IR ) {
20
13
browser()
21
14
nodejs()
You can’t perform that action at this time.
0 commit comments