Prepare for release 0.12.1

This commit is contained in:
Brian Norman
2023-04-08 19:24:14 -05:00
parent 87b209ab91
commit 4b18bf5546
4 changed files with 19 additions and 3 deletions
+16
View File
@@ -1,6 +1,22 @@
Change Log
==========
## Version 0.12.1
_2023-04-08_
**New**
* Support receivers of infix functions (#69).
**Fixes**
* Ignore implicit varargs array (#84).
* Ignore body of object literals (#85).
**Other**
* Run tests in parallel (#73) - @christophsturm.
* Upgrade to Gradle 8 (#87) - @TWiStErRob.
* Add Kotlinter for code styling (#86) - @christophsturm.
## Version 0.12.0
_2022-07-10_
+1 -1
View File
@@ -98,7 +98,7 @@ Builds of the Gradle plugin are available through the
```kotlin
plugins {
kotlin("multiplatform") version "1.7.0"
id("com.bnorm.power.kotlin-power-assert") version "0.12.0"
id("com.bnorm.power.kotlin-power-assert") version "0.12.1"
}
```
+1 -1
View File
@@ -8,7 +8,7 @@ plugins {
allprojects {
group = "com.bnorm.power"
version = "0.13.0-SNAPSHOT"
version = "0.12.1"
}
subprojects {
+1 -1
View File
@@ -1,6 +1,6 @@
plugins {
kotlin("multiplatform") version "1.7.0"
id("com.bnorm.power.kotlin-power-assert") version "0.12.0"
id("com.bnorm.power.kotlin-power-assert") version "0.12.1"
}
repositories {