From 76f56031c76347730d9f594a4db278bbe092463c Mon Sep 17 00:00:00 2001 From: Brian Norman Date: Tue, 29 Jun 2021 21:08:06 -0500 Subject: [PATCH] Prepare for release 0.10.0 --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- build.gradle.kts | 2 +- sample/build.gradle.kts | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c895c1963b..0d9337dea79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ Change Log ========== +## Version 0.10.0 + +_2021-06-29_ + +**New** +* Support Kotlin 1.5.20. + ## Version 0.9.0 _2021-06-02_ diff --git a/README.md b/README.md index f990c843318..c0d1becad3d 100644 --- a/README.md +++ b/README.md @@ -97,8 +97,8 @@ Builds of the Gradle plugin are available through the ```kotlin plugins { - kotlin("multiplatform") version "1.5.10" - id("com.bnorm.power.kotlin-power-assert") version "0.9.0" + kotlin("multiplatform") version "1.5.20" + id("com.bnorm.power.kotlin-power-assert") version "0.10.0" } ``` diff --git a/build.gradle.kts b/build.gradle.kts index b468c98c955..5399daeb0fd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { allprojects { group = "com.bnorm.power" - version = "0.10.0-SNAPSHOT" + version = "0.10.0" } subprojects { diff --git a/sample/build.gradle.kts b/sample/build.gradle.kts index cce5e600da6..14106290daa 100644 --- a/sample/build.gradle.kts +++ b/sample/build.gradle.kts @@ -1,6 +1,6 @@ plugins { kotlin("multiplatform") version "1.5.20" - id("com.bnorm.power.kotlin-power-assert") version "0.9.0" + id("com.bnorm.power.kotlin-power-assert") version "0.10.0" } repositories {