Prepare for release 0.12.0
This commit is contained in:
@@ -1,6 +1,19 @@
|
||||
Change Log
|
||||
==========
|
||||
|
||||
## Version 0.12.0
|
||||
|
||||
_2022-07-10_
|
||||
|
||||
**New**
|
||||
* Support Kotlin 1.7.0 (#67).
|
||||
* Allow excluding Gradle source sets from transformation (#55).
|
||||
|
||||
**Fixes**
|
||||
* Ignore smart casting from diagram (#60).
|
||||
* Properly align `is` operator result (#59).
|
||||
* Support JVM static functions for transformation (#52).
|
||||
|
||||
## Version 0.11.0
|
||||
|
||||
_2021-11-18_
|
||||
|
||||
@@ -97,8 +97,8 @@ Builds of the Gradle plugin are available through the
|
||||
|
||||
```kotlin
|
||||
plugins {
|
||||
kotlin("multiplatform") version "1.6.0"
|
||||
id("com.bnorm.power.kotlin-power-assert") version "0.11.0"
|
||||
kotlin("multiplatform") version "1.7.0"
|
||||
id("com.bnorm.power.kotlin-power-assert") version "0.12.0"
|
||||
}
|
||||
```
|
||||
|
||||
@@ -156,7 +156,7 @@ Kotlin was first introduced. If a version of Kotlin or this plugin is not listed
|
||||
it can be assumed to maintain compatibility with the next oldest version listed.
|
||||
|
||||
| Kotlin Version | Plugin Version |
|
||||
| -------------- | -------------- |
|
||||
|----------------|----------------|
|
||||
| 1.3.60 | 0.1.0 |
|
||||
| 1.3.70 | 0.3.0 |
|
||||
| 1.4.0 | 0.4.0 |
|
||||
@@ -166,6 +166,7 @@ it can be assumed to maintain compatibility with the next oldest version listed.
|
||||
| 1.5.10 | 0.9.0 |
|
||||
| 1.5.20 | 0.10.0 |
|
||||
| 1.6.0 | 0.11.0 |
|
||||
| 1.7.0 | 0.12.0 |
|
||||
|
||||
## Kotlin IR
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ plugins {
|
||||
|
||||
allprojects {
|
||||
group = "com.bnorm.power"
|
||||
version = "0.12.0-SNAPSHOT"
|
||||
version = "0.12.0"
|
||||
}
|
||||
|
||||
subprojects {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
plugins {
|
||||
kotlin("multiplatform") version "1.7.0"
|
||||
id("com.bnorm.power.kotlin-power-assert") version "0.11.0"
|
||||
id("com.bnorm.power.kotlin-power-assert") version "0.12.0"
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
||||
Reference in New Issue
Block a user