Prepare for release 0.3.0
This commit is contained in:
@@ -1,6 +1,14 @@
|
|||||||
Change Log
|
Change Log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
## Version 0.3.0
|
||||||
|
|
||||||
|
_2020-03-07_
|
||||||
|
|
||||||
|
* Support Kotlin 1.3.70.
|
||||||
|
* Fix: Including Kotlin wrapper class for top-level functions in Gradle
|
||||||
|
configuration is no longer required.
|
||||||
|
|
||||||
## Version 0.2.0
|
## Version 0.2.0
|
||||||
|
|
||||||
_2020-02-12_
|
_2020-02-12_
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ Builds of the Gradle plugin are available through the
|
|||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
plugins {
|
plugins {
|
||||||
id("com.bnorm.power.kotlin-power-assert") version "0.2.0"
|
id("com.bnorm.power.kotlin-power-assert") version "0.3.0"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -85,7 +85,7 @@ form which also takes a String or String producing lambda.
|
|||||||
|
|
||||||
```kotlin
|
```kotlin
|
||||||
configure<com.bnorm.power.PowerAssertGradleExtension> {
|
configure<com.bnorm.power.PowerAssertGradleExtension> {
|
||||||
functions = listOf("kotlin.test.AssertionsKt.assertTrue", "kotlin.PreconditionsKt.require")
|
functions = listOf("kotlin.test.assertTrue", "kotlin.require")
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ plugins {
|
|||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "com.bnorm.power"
|
group = "com.bnorm.power"
|
||||||
version = "0.3.0-SNAPSHOT"
|
version = "0.3.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
|
|||||||
+1
-1
@@ -37,7 +37,7 @@ class PowerAssertGradleSubplugin : KotlinGradleSubplugin<AbstractCompile> {
|
|||||||
override fun getPluginArtifact(): SubpluginArtifact = SubpluginArtifact(
|
override fun getPluginArtifact(): SubpluginArtifact = SubpluginArtifact(
|
||||||
groupId = "com.bnorm.power",
|
groupId = "com.bnorm.power",
|
||||||
artifactId = "kotlin-power-assert",
|
artifactId = "kotlin-power-assert",
|
||||||
version = "0.3.0-SNAPSHOT"
|
version = "0.3.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
override fun apply(
|
override fun apply(
|
||||||
|
|||||||
Reference in New Issue
Block a user