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

Commit b81d0a7

Browse files
committed
Prepare for release 0.3.0
1 parent d8cb6b6 commit b81d0a7

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

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

4+
## Version 0.3.0
5+
6+
_2020-03-07_
7+
8+
* Support Kotlin 1.3.70.
9+
* Fix: Including Kotlin wrapper class for top-level functions in Gradle
10+
configuration is no longer required.
11+
412
## Version 0.2.0
513

614
_2020-02-12_

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Builds of the Gradle plugin are available through the
7474

7575
```kotlin
7676
plugins {
77-
id("com.bnorm.power.kotlin-power-assert") version "0.2.0"
77+
id("com.bnorm.power.kotlin-power-assert") version "0.3.0"
7878
}
7979
```
8080

@@ -85,7 +85,7 @@ form which also takes a String or String producing lambda.
8585

8686
```kotlin
8787
configure<com.bnorm.power.PowerAssertGradleExtension> {
88-
functions = listOf("kotlin.test.AssertionsKt.assertTrue", "kotlin.PreconditionsKt.require")
88+
functions = listOf("kotlin.test.assertTrue", "kotlin.require")
8989
}
9090
```
9191

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.3.0-SNAPSHOT"
9+
version = "0.3.0"
1010
}
1111

1212
subprojects {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class PowerAssertGradleSubplugin : KotlinGradleSubplugin<AbstractCompile> {
3737
override fun getPluginArtifact(): SubpluginArtifact = SubpluginArtifact(
3838
groupId = "com.bnorm.power",
3939
artifactId = "kotlin-power-assert",
40-
version = "0.3.0-SNAPSHOT"
40+
version = "0.3.0"
4141
)
4242

4343
override fun apply(

0 commit comments

Comments
 (0)