Prepare next development version

This commit is contained in:
Brian Norman
2020-03-07 12:49:35 -06:00
parent b81d0a7542
commit 8fe3f112d1
3 changed files with 6 additions and 5 deletions
+4 -3
View File
@@ -74,6 +74,7 @@ Builds of the Gradle plugin are available through the
```kotlin ```kotlin
plugins { plugins {
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.3.0"
} }
``` ```
@@ -91,9 +92,9 @@ configure<com.bnorm.power.PowerAssertGradleExtension> {
## Kotlin IR ## Kotlin IR
Using this compiler plugin only works if the code is compiled using IR. This can Using this compiler plugin only works if the code is compiled using Kotlin
be enabled only when compiling the test SourceSet if desired. As Kotlin IR is 1.3.70 and IR is enabled. IR can be enabled only when compiling the test
still experimental, mileage may vary. SourceSet if desired. As Kotlin IR is still experimental, mileage may vary.
```kotlin ```kotlin
compileTestKotlin { compileTestKotlin {
+1 -1
View File
@@ -6,7 +6,7 @@ plugins {
allprojects { allprojects {
group = "com.bnorm.power" group = "com.bnorm.power"
version = "0.3.0" version = "0.4.0-SNAPSHOT"
} }
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" version = "0.4.0-SNAPSHOT"
) )
override fun apply( override fun apply(