Skip to content

Commit 64cf96b

Browse files
Abduqodiri Qurbonzodaqurbonzoda
Abduqodiri Qurbonzoda
authored andcommitted
Update CHANGELOG.md and guides for 0.4.13
1 parent 3271d04 commit 64cf96b

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## 0.4.13
4+
5+
- Support Kotlin 2.0.0 and newer [#255](https://github.com/Kotlin/kotlinx-benchmark/pull/255)
6+
- Add support for non-packed klib files in Native [#256](https://github.com/Kotlin/kotlinx-benchmark/pull/256)
7+
- Fix Native benchmark compilations triggering compile tasks on Gradle sync [#252](https://github.com/Kotlin/kotlinx-benchmark/pull/252)
8+
- Do not log KMP host messages at warning level [#105](https://github.com/Kotlin/kotlinx-benchmark/issues/105)
9+
310
## 0.4.12
411

512
- Support debug build configuration for K/N [#189](https://github.com/Kotlin/kotlinx-benchmark/issues/189)

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ dedicated to setting up benchmarking in those specific project types.
5959
```kotlin
6060
// build.gradle.kts
6161
plugins {
62-
id("org.jetbrains.kotlinx.benchmark") version "0.4.12"
62+
id("org.jetbrains.kotlinx.benchmark") version "0.4.13"
6363
}
6464
```
6565

@@ -82,7 +82,7 @@ dedicated to setting up benchmarking in those specific project types.
8282
sourceSets {
8383
commonMain {
8484
dependencies {
85-
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.12")
85+
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.13")
8686
}
8787
}
8888
}
@@ -107,7 +107,7 @@ dedicated to setting up benchmarking in those specific project types.
107107
```groovy
108108
// build.gradle
109109
plugins {
110-
id 'org.jetbrains.kotlinx.benchmark' version '0.4.12'
110+
id 'org.jetbrains.kotlinx.benchmark' version '0.4.13'
111111
}
112112
```
113113

@@ -130,7 +130,7 @@ dedicated to setting up benchmarking in those specific project types.
130130
sourceSets {
131131
commonMain {
132132
dependencies {
133-
implementation 'org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.12'
133+
implementation 'org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.13'
134134
}
135135
}
136136
}

docs/kotlin-jvm-project-setup.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To configure Kotlin/JVM and Java projects for benchmarking, follow these steps:
1414
```kotlin
1515
// build.gradle.kts
1616
plugins {
17-
id("org.jetbrains.kotlinx.benchmark") version "0.4.12"
17+
id("org.jetbrains.kotlinx.benchmark") version "0.4.13"
1818
}
1919
```
2020

@@ -25,7 +25,7 @@ To configure Kotlin/JVM and Java projects for benchmarking, follow these steps:
2525
```groovy
2626
// build.gradle
2727
plugins {
28-
id 'org.jetbrains.kotlinx.benchmark' version '0.4.12'
28+
id 'org.jetbrains.kotlinx.benchmark' version '0.4.13'
2929
}
3030
```
3131

@@ -66,7 +66,7 @@ To configure Kotlin/JVM and Java projects for benchmarking, follow these steps:
6666
```kotlin
6767
// build.gradle.kts
6868
dependencies {
69-
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.12")
69+
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.13")
7070
}
7171
```
7272

@@ -77,7 +77,7 @@ To configure Kotlin/JVM and Java projects for benchmarking, follow these steps:
7777
```groovy
7878
// build.gradle
7979
dependencies {
80-
implementation 'org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.12'
80+
implementation 'org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.13'
8181
}
8282
```
8383

0 commit comments

Comments
 (0)