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

Commit 6c1fc46

Browse files
committed
Prepare for release 0.13.0
1 parent 7ef9717 commit 6c1fc46

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

CHANGELOG.md

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

4+
## Version 0.13.0
5+
6+
_2023-05-06_
7+
8+
**New**
9+
* Support Kotlin 1.8.20 (#89).
10+
11+
**Fixes**
12+
* Correctly align `in` operator. (#96).
13+
14+
## Version 0.12.2
15+
16+
_2023-04-09_
17+
18+
**Fixes**
19+
* Correctly align `in` operator. (#95).
20+
421
## Version 0.12.1
522

623
_2023-04-08_

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ Builds of the Gradle plugin are available through the
9797

9898
```kotlin
9999
plugins {
100-
kotlin("multiplatform") version "1.7.0"
101-
id("com.bnorm.power.kotlin-power-assert") version "0.12.1"
100+
kotlin("multiplatform") version "1.8.20"
101+
id("com.bnorm.power.kotlin-power-assert") version "0.13.0"
102102
}
103103
```
104104

@@ -167,6 +167,7 @@ it can be assumed to maintain compatibility with the next oldest version listed.
167167
| 1.5.20 | 0.10.0 |
168168
| 1.6.0 | 0.11.0 |
169169
| 1.7.0 | 0.12.0 |
170+
| 1.8.20 | 0.13.0 |
170171

171172
## Kotlin IR
172173

build.gradle.kts

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

1414
allprojects {
1515
group = "com.bnorm.power"
16-
version = "0.13.0-SNAPSHOT"
16+
version = "0.13.0"
1717
}
1818

1919
allprojects {

sample/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("multiplatform") version "1.8.20"
3-
id("com.bnorm.power.kotlin-power-assert") version "0.12.1"
3+
id("com.bnorm.power.kotlin-power-assert") version "0.13.0"
44
}
55

66
repositories {

0 commit comments

Comments
 (0)