This repository was archived by the owner on Jun 3, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Expand file tree Collapse file tree 4 files changed +17
-11
lines changed Original file line number Diff line number Diff line change 11Change Log
22==========
33
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+
417## Version 0.7.0
518
619_ 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
9898``` kotlin
9999plugins {
100100 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"
102102}
103103```
104104
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
77
88allprojects {
99 group = " com.bnorm.power"
10- version = " 0.8.0-SNAPSHOT "
10+ version = " 0.8.0"
1111}
1212
1313subprojects {
Original file line number Diff line number Diff line change 11plugins {
22 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"
44}
55
66repositories {
77 mavenCentral()
88}
99
1010kotlin {
11- jvm {
12- compilations.all {
13- kotlinOptions {
14- kotlinOptions.jvmTarget = " 1.8"
15- kotlinOptions.useIR = true
16- }
17- }
18- }
11+ jvm()
1912 js(IR ) {
2013 browser()
2114 nodejs()
You can’t perform that action at this time.
0 commit comments