Prepare for release 0.13.0

This commit is contained in:
Brian Norman
2023-05-06 09:27:48 -05:00
parent 7ef97177aa
commit 6c1fc46c2e
4 changed files with 22 additions and 4 deletions
+17
View File
@@ -1,6 +1,23 @@
Change Log
==========
## Version 0.13.0
_2023-05-06_
**New**
* Support Kotlin 1.8.20 (#89).
**Fixes**
* Correctly align `in` operator. (#96).
## Version 0.12.2
_2023-04-09_
**Fixes**
* Correctly align `in` operator. (#95).
## Version 0.12.1
_2023-04-08_
+3 -2
View File
@@ -97,8 +97,8 @@ 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.1"
kotlin("multiplatform") version "1.8.20"
id("com.bnorm.power.kotlin-power-assert") version "0.13.0"
}
```
@@ -167,6 +167,7 @@ it can be assumed to maintain compatibility with the next oldest version listed.
| 1.5.20 | 0.10.0 |
| 1.6.0 | 0.11.0 |
| 1.7.0 | 0.12.0 |
| 1.8.20 | 0.13.0 |
## Kotlin IR
+1 -1
View File
@@ -13,7 +13,7 @@ plugins {
allprojects {
group = "com.bnorm.power"
version = "0.13.0-SNAPSHOT"
version = "0.13.0"
}
allprojects {
+1 -1
View File
@@ -1,6 +1,6 @@
plugins {
kotlin("multiplatform") version "1.8.20"
id("com.bnorm.power.kotlin-power-assert") version "0.12.1"
id("com.bnorm.power.kotlin-power-assert") version "0.13.0"
}
repositories {