Prepare for release 0.3.0

This commit is contained in:
Brian Norman
2020-03-07 12:46:45 -06:00
parent d8cb6b64bc
commit b81d0a7542
4 changed files with 12 additions and 4 deletions
+8
View File
@@ -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_
+2 -2
View File
@@ -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
View File
@@ -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 {
@@ -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(