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

Commit 27ace23

Browse files
committed
Prepare for release 0.6.1
1 parent fbe44d1 commit 27ace23

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
Change Log
22
==========
33

4+
## Version 0.6.1
5+
6+
_2020-11-29_
7+
8+
Fixes:
9+
* Better support for arithmetic in assertion condition (#27).
10+
411
## Version 0.6.0
512

613
_2020-11-21_
714

815
Changes:
9-
* Support Kotlin 1.4.20.
16+
* Support Kotlin 1.4.20.
1017

1118
## Version 0.5.3
1219

@@ -21,22 +28,23 @@ Bug Fixes:
2128
_2020-09-25_
2229

2330
Bug Fixes:
24-
* Skip transformation if entire expression is constant (`true` or `false`).
31+
* Skip transformation if entire expression is constant (`true` or `false`)
32+
(#23).
2533
* Fix inlining of lambda parameter to transformed function call on Kotlin/JS
26-
and Kotlin/Native.
34+
and Kotlin/Native (#22).
2735

2836
## Version 0.5.1
2937

3038
_2020-09-14_
3139

3240
Bug Fixes:
33-
* Support Windows-style line-separators in compiled files.
41+
* Support Windows-style line-separators in compiled files (#20).
3442

3543
## Version 0.5.0
3644

3745
_2020-08-29_
3846

39-
* Support for Kotlin/Native.
47+
* Support for Kotlin/Native (#18).
4048

4149
## Version 0.4.0
4250

@@ -49,23 +57,23 @@ _2020-08-21_
4957
_2020-05-25_
5058

5159
* Fix: Do not include wrapper class for top-level function in Gradle plugin
52-
default function.
60+
default function (#13).
5361

5462
## Version 0.3.0
5563

5664
_2020-03-07_
5765

5866
* Support Kotlin 1.3.70.
5967
* Fix: Including Kotlin wrapper class for top-level functions in Gradle
60-
configuration is no longer required.
68+
configuration is no longer required.
6169

6270
## Version 0.2.0
6371

6472
_2020-02-12_
6573

6674
* Support configuring of which functions are transformed (eg, assert, require,
67-
check, assertTrue). This works for any function which takes a Boolean and a
68-
String.
75+
check, assertTrue). This works for any function which takes a Boolean and a
76+
String.
6977
* Support Boolean expressions which are split onto multiple lines.
7078

7179
## Version 0.1.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Builds of the Gradle plugin are available through the
7676
```kotlin
7777
plugins {
7878
kotlin("multiplatform") version "1.4.20"
79-
id("com.bnorm.power.kotlin-power-assert") version "0.6.0"
79+
id("com.bnorm.power.kotlin-power-assert") version "0.6.1"
8080
}
8181
```
8282

build.gradle.kts

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

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

1313
subprojects {

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.4.20"
3-
id("com.bnorm.power.kotlin-power-assert") version "0.6.0"
3+
id("com.bnorm.power.kotlin-power-assert") version "0.6.1"
44
}
55

66
repositories {

0 commit comments

Comments
 (0)