Skip to content

Commit 1b48530

Browse files
committed
Release v0.4.14
1 parent d1b82c9 commit 1b48530

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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)

README.md

Lines changed: 4 additions & 4 deletions
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.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
}

0 commit comments

Comments
 (0)