File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## 0.4.14
4+
5+ - Fixed various issues specific to Kotlin/JS projects [ #292 ] ( https://github.com/Kotlin/kotlinx-benchmark/pull/292 )
6+ - Added benchmark name validation for JVM [ #304 ] ( https://github.com/Kotlin/kotlinx-benchmark/pull/304 )
7+ - Various build infrastructure updates
8+
39## 0.4.13
410
511- Support Kotlin 2.0.0 and newer [ #255 ] ( https://github.com/Kotlin/kotlinx-benchmark/pull/255 )
Original file line number Diff line number Diff 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.13 "
62+ id(" org.jetbrains.kotlinx.benchmark" ) version " 0.4.14 "
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.13 " )
85+ implementation(" org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.14 " )
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.13 '
110+ id ' org.jetbrains.kotlinx.benchmark' version ' 0.4.14 '
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.13 '
133+ implementation ' org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.14 '
134134 }
135135 }
136136 }
You can’t perform that action at this time.
0 commit comments