Prepare for release 0.4.0

This commit is contained in:
Brian Norman
2020-08-20 19:39:26 -05:00
parent 9864949961
commit 581612e9cb
5 changed files with 10 additions and 4 deletions
+6
View File
@@ -1,6 +1,12 @@
Change Log Change Log
========== ==========
## Version 0.4.0
_2020-08-21_
* Support Kotlin 1.4.0.
## Version 0.3.1 ## Version 0.3.1
_2020-05-25_ _2020-05-25_
+1 -1
View File
@@ -75,7 +75,7 @@ Builds of the Gradle plugin are available through the
```kotlin ```kotlin
plugins { plugins {
kotlin("jvm") version "1.3.70" kotlin("jvm") version "1.3.70"
id("com.bnorm.power.kotlin-power-assert") version "0.3.0" id("com.bnorm.power.kotlin-power-assert") version "0.4.0"
} }
``` ```
+1 -1
View File
@@ -6,7 +6,7 @@ plugins {
allprojects { allprojects {
group = "com.bnorm.power" group = "com.bnorm.power"
version = "0.4.0-SNAPSHOT" version = "0.4.0"
} }
subprojects { subprojects {
@@ -35,7 +35,7 @@ class PowerAssertGradlePlugin : KotlinCompilerPluginSupportPlugin {
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.4.0-SNAPSHOT" version = "0.4.0"
) )
override fun applyToCompilation( override fun applyToCompilation(
+1 -1
View File
@@ -1,6 +1,6 @@
buildscript { buildscript {
dependencies { dependencies {
classpath("gradle.plugin.com.bnorm.power:kotlin-power-assert-gradle:0.3.0") classpath("gradle.plugin.com.bnorm.power:kotlin-power-assert-gradle:0.4.0")
} }
} }