Skip to content

Commit 6b31b1b

Browse files
Abduqodiri Qurbonzodaqurbonzoda
authored andcommitted
Update README.md for 0.4.1 release
1 parent 31a5558 commit 6b31b1b

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,9 @@
1111
> * The Gradle plugin id has changed to `org.jetbrains.kotlinx.benchmark`
1212
> * The library runtime artifact id has changed to `kotlinx-benchmark-runtime`
1313
14-
> **_NOTE:_**   When Kotlin 1.5.0 until 1.5.30 is used make sure the `kotlin-gradle-plugin` is pulled from Maven Central,
15-
> not Gradle Plugin Portal. For more information: https://github.com/Kotlin/kotlinx-benchmark/issues/42
16-
1714

1815
**kotlinx.benchmark** is a toolkit for running benchmarks for multiplatform code written in Kotlin
19-
and running on the next supported targets: JVM, JavaScript.
16+
and running on the following supported targets: JVM, JavaScript and Native.
2017

2118
If you're familiar with [JMH](https://openjdk.java.net/projects/code-tools/jmh/), it is very similar and uses it under
2219
the hoods to run benchmarks on JVM.
@@ -33,7 +30,7 @@ Use plugin in `build.gradle`:
3330

3431
```groovy
3532
plugins {
36-
id 'org.jetbrains.kotlinx.benchmark' version '0.3.1'
33+
id 'org.jetbrains.kotlinx.benchmark' version '0.4.1'
3734
}
3835
```
3936

@@ -86,7 +83,7 @@ kotlin {
8683
sourceSets {
8784
commonMain {
8885
dependencies {
89-
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.3.1")
86+
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.1")
9087
}
9188
}
9289
}
@@ -180,7 +177,7 @@ benchmark {
180177
warmups = 5 // number of warmup iterations
181178
iterations = 3 // number of iterations
182179
iterationTime = 500 // time in seconds per iteration
183-
iterationTimeUnit = "ms" // time unity for iterationTime, default is seconds
180+
iterationTimeUnit = "ms" // time unit for iterationTime, default is seconds
184181
}
185182
}
186183

0 commit comments

Comments
 (0)