From 24fb001e8cae88befd5b352b0e281517fe595f67 Mon Sep 17 00:00:00 2001 From: Abduqodiri Qurbonzoda Date: Sun, 26 Jun 2022 13:24:34 +0300 Subject: [PATCH] Update README.md and CHANGELOG.md for 0.4.4 --- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 501ba286..a6a4dae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## 0.4.4 + +- Require the minimum Kotlin version of 1.7.0 + +## 0.4.3 + +- Require the minimum Kotlin version of 1.6.20 + ## 0.4.2 - Support JS IR backend diff --git a/README.md b/README.md index 307dd790..854e709a 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Kotlin/JVM benchmarks on other platforms with minimum modifications, if any at a Gradle 6.8 or newer -Kotlin 1.6.0 or newer +Kotlin 1.7.0 or newer # Gradle plugin @@ -36,7 +36,7 @@ Use plugin in `build.gradle`: ```groovy plugins { - id 'org.jetbrains.kotlinx.benchmark' version '0.4.2' + id 'org.jetbrains.kotlinx.benchmark' version '0.4.4' } ``` @@ -89,7 +89,7 @@ kotlin { sourceSets { commonMain { dependencies { - implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.2") + implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.4") } } }