diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000000..a93ffb05844 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +Change Log +========== + +## Version 0.1.0 + +_2020-02-10_ + + * Initial release diff --git a/build.gradle.kts b/build.gradle.kts index f2bf3b57791..240e12f9966 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { allprojects { group = "com.bnorm.power" - version = "0.1.0-SNAPSHOT" + version = "0.1.0" } subprojects { diff --git a/kotlin-power-assert-gradle/src/main/kotlin/com/bnorm/power/PowerAssertGradleSubplugin.kt b/kotlin-power-assert-gradle/src/main/kotlin/com/bnorm/power/PowerAssertGradleSubplugin.kt index 8c7cfdc6aa5..100394d061d 100644 --- a/kotlin-power-assert-gradle/src/main/kotlin/com/bnorm/power/PowerAssertGradleSubplugin.kt +++ b/kotlin-power-assert-gradle/src/main/kotlin/com/bnorm/power/PowerAssertGradleSubplugin.kt @@ -37,7 +37,7 @@ class PowerAssertGradleSubplugin : KotlinGradleSubplugin { override fun getPluginArtifact(): SubpluginArtifact = SubpluginArtifact( groupId = "com.bnorm.power", artifactId = "kotlin-power-assert", - version = "0.1.0-SNAPSHOT" + version = "0.1.0" ) override fun apply( diff --git a/kotlin-power-assert/src/test/kotlin/com/bnorm/power/test.kt b/kotlin-power-assert/src/test/kotlin/com/bnorm/power/test.kt index 634e89245f9..c06ab1f13a0 100644 --- a/kotlin-power-assert/src/test/kotlin/com/bnorm/power/test.kt +++ b/kotlin-power-assert/src/test/kotlin/com/bnorm/power/test.kt @@ -19,7 +19,6 @@ package com.bnorm.power import com.tschuchort.compiletesting.KotlinCompilation import com.tschuchort.compiletesting.SourceFile import org.intellij.lang.annotations.Language -import org.jetbrains.kotlin.descriptors.FunctionDescriptor import org.junit.Test import java.lang.reflect.InvocationTargetException import kotlin.test.assertEquals