Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit 581612e

Browse files
committed
Prepare for release 0.4.0
1 parent 9864949 commit 581612e

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log
22
==========
33

4+
## Version 0.4.0
5+
6+
_2020-08-21_
7+
8+
* Support Kotlin 1.4.0.
9+
410
## Version 0.3.1
511

612
_2020-05-25_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Builds of the Gradle plugin are available through the
7575
```kotlin
7676
plugins {
7777
kotlin("jvm") version "1.3.70"
78-
id("com.bnorm.power.kotlin-power-assert") version "0.3.0"
78+
id("com.bnorm.power.kotlin-power-assert") version "0.4.0"
7979
}
8080
```
8181

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
allprojects {
88
group = "com.bnorm.power"
9-
version = "0.4.0-SNAPSHOT"
9+
version = "0.4.0"
1010
}
1111

1212
subprojects {

kotlin-power-assert-gradle/src/main/kotlin/com/bnorm/power/PowerAssertGradlePlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class PowerAssertGradlePlugin : KotlinCompilerPluginSupportPlugin {
3535
override fun getPluginArtifact(): SubpluginArtifact = SubpluginArtifact(
3636
groupId = "com.bnorm.power",
3737
artifactId = "kotlin-power-assert",
38-
version = "0.4.0-SNAPSHOT"
38+
version = "0.4.0"
3939
)
4040

4141
override fun applyToCompilation(

sample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
dependencies {
3-
classpath("gradle.plugin.com.bnorm.power:kotlin-power-assert-gradle:0.3.0")
3+
classpath("gradle.plugin.com.bnorm.power:kotlin-power-assert-gradle:0.4.0")
44
}
55
}
66

0 commit comments

Comments
 (0)