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 1
1
Change Log
2
2
==========
3
3
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
+
4
12
## Version 0.2.0
5
13
6
14
_ 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
74
74
75
75
``` kotlin
76
76
plugins {
77
- id(" com.bnorm.power.kotlin-power-assert" ) version " 0.2 .0"
77
+ id(" com.bnorm.power.kotlin-power-assert" ) version " 0.3 .0"
78
78
}
79
79
```
80
80
@@ -85,7 +85,7 @@ form which also takes a String or String producing lambda.
85
85
86
86
``` kotlin
87
87
configure< com.bnorm.power.PowerAssertGradleExtension > {
88
- functions = listOf (" kotlin.test.AssertionsKt. assertTrue" , " kotlin.PreconditionsKt .require" )
88
+ functions = listOf (" kotlin.test.assertTrue" , " kotlin.require" )
89
89
}
90
90
```
91
91
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
6
6
7
7
allprojects {
8
8
group = " com.bnorm.power"
9
- version = " 0.3.0-SNAPSHOT "
9
+ version = " 0.3.0"
10
10
}
11
11
12
12
subprojects {
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class PowerAssertGradleSubplugin : KotlinGradleSubplugin<AbstractCompile> {
37
37
override fun getPluginArtifact (): SubpluginArtifact = SubpluginArtifact (
38
38
groupId = " com.bnorm.power" ,
39
39
artifactId = " kotlin-power-assert" ,
40
- version = " 0.3.0-SNAPSHOT "
40
+ version = " 0.3.0"
41
41
)
42
42
43
43
override fun apply (
You can’t perform that action at this time.
0 commit comments