File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
9
## 0.4.13
4
10
5
11
- 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.
59
59
``` kotlin
60
60
// build.gradle.kts
61
61
plugins {
62
- id(" org.jetbrains.kotlinx.benchmark" ) version " 0.4.13 "
62
+ id(" org.jetbrains.kotlinx.benchmark" ) version " 0.4.14 "
63
63
}
64
64
```
65
65
@@ -82,7 +82,7 @@ dedicated to setting up benchmarking in those specific project types.
82
82
sourceSets {
83
83
commonMain {
84
84
dependencies {
85
- implementation(" org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.13 " )
85
+ implementation(" org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.14 " )
86
86
}
87
87
}
88
88
}
@@ -107,7 +107,7 @@ dedicated to setting up benchmarking in those specific project types.
107
107
```groovy
108
108
// build.gradle
109
109
plugins {
110
- id ' org.jetbrains.kotlinx.benchmark' version ' 0.4.13 '
110
+ id ' org.jetbrains.kotlinx.benchmark' version ' 0.4.14 '
111
111
}
112
112
```
113
113
@@ -130,7 +130,7 @@ dedicated to setting up benchmarking in those specific project types.
130
130
sourceSets {
131
131
commonMain {
132
132
dependencies {
133
- implementation ' org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.13 '
133
+ implementation ' org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.14 '
134
134
}
135
135
}
136
136
}
You can’t perform that action at this time.
0 commit comments