Skip to content

Commit b77abbe

Browse files
committed
Prepare for release 0.12.0
1 parent f4793f2 commit b77abbe

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Change Log
22
==========
33

4+
## Version 0.12.0
5+
6+
_2022-07-10_
7+
8+
**New**
9+
* Support Kotlin 1.7.0 (#67).
10+
* Allow excluding Gradle source sets from transformation (#55).
11+
12+
**Fixes**
13+
* Ignore smart casting from diagram (#60).
14+
* Properly align `is` operator result (#59).
15+
* Support JVM static functions for transformation (#52).
16+
417
## Version 0.11.0
518

619
_2021-11-18_

README.md

+4-3
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.6.0"
101-
id("com.bnorm.power.kotlin-power-assert") version "0.11.0"
100+
kotlin("multiplatform") version "1.7.0"
101+
id("com.bnorm.power.kotlin-power-assert") version "0.12.0"
102102
}
103103
```
104104

@@ -156,7 +156,7 @@ Kotlin was first introduced. If a version of Kotlin or this plugin is not listed
156156
it can be assumed to maintain compatibility with the next oldest version listed.
157157

158158
| Kotlin Version | Plugin Version |
159-
| -------------- | -------------- |
159+
|----------------|----------------|
160160
| 1.3.60 | 0.1.0 |
161161
| 1.3.70 | 0.3.0 |
162162
| 1.4.0 | 0.4.0 |
@@ -166,6 +166,7 @@ it can be assumed to maintain compatibility with the next oldest version listed.
166166
| 1.5.10 | 0.9.0 |
167167
| 1.5.20 | 0.10.0 |
168168
| 1.6.0 | 0.11.0 |
169+
| 1.7.0 | 0.12.0 |
169170

170171
## Kotlin IR
171172

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
allprojects {
99
group = "com.bnorm.power"
10-
version = "0.12.0-SNAPSHOT"
10+
version = "0.12.0"
1111
}
1212

1313
subprojects {

sample/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
kotlin("multiplatform") version "1.7.0"
3-
id("com.bnorm.power.kotlin-power-assert") version "0.11.0"
3+
id("com.bnorm.power.kotlin-power-assert") version "0.12.0"
44
}
55

66
repositories {

0 commit comments

Comments
 (0)