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 +12
-4
lines changed
kotlin-power-assert-gradle/src/main/kotlin/com/bnorm/power Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ ## Version 0.3.0
5+
6+ _ 2020-03-07_
7+
8+ * Support Kotlin 1.3.70.
9+ * Fix: Including Kotlin wrapper class for top-level functions in Gradle
10+ configuration is no longer required.
11+
412## Version 0.2.0
513
614_ 2020-02-12_
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ Builds of the Gradle plugin are available through the
7474
7575``` kotlin
7676plugins {
77- id(" com.bnorm.power.kotlin-power-assert" ) version " 0.2 .0"
77+ id(" com.bnorm.power.kotlin-power-assert" ) version " 0.3 .0"
7878}
7979```
8080
@@ -85,7 +85,7 @@ form which also takes a String or String producing lambda.
8585
8686``` kotlin
8787configure< com.bnorm.power.PowerAssertGradleExtension > {
88- functions = listOf (" kotlin.test.AssertionsKt. assertTrue" , " kotlin.PreconditionsKt .require" )
88+ functions = listOf (" kotlin.test.assertTrue" , " kotlin.require" )
8989}
9090```
9191
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
66
77allprojects {
88 group = " com.bnorm.power"
9- version = " 0.3.0-SNAPSHOT "
9+ version = " 0.3.0"
1010}
1111
1212subprojects {
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class PowerAssertGradleSubplugin : KotlinGradleSubplugin<AbstractCompile> {
3737 override fun getPluginArtifact (): SubpluginArtifact = SubpluginArtifact (
3838 groupId = " com.bnorm.power" ,
3939 artifactId = " kotlin-power-assert" ,
40- version = " 0.3.0-SNAPSHOT "
40+ version = " 0.3.0"
4141 )
4242
4343 override fun apply (
You can’t perform that action at this time.
0 commit comments