Skip to content

Commit 84046fd

Browse files
author
Abduqodiri Qurbonzoda
committed
Promote the library version to 0.4.7
1 parent 469928e commit 84046fd

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

examples/java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
dependencies {
3-
classpath "org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.4.6"
3+
classpath "org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.4.7"
44
}
55
}
66

examples/kotlin-kts/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
java
1010
kotlin("jvm")
1111
kotlin("plugin.allopen") version "1.7.20"
12-
id("org.jetbrains.kotlinx.benchmark") version "0.4.6"
12+
id("org.jetbrains.kotlinx.benchmark") version "0.4.7"
1313
}
1414

1515
sourceSets.all {

examples/kotlin-multiplatform/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import org.jetbrains.kotlin.konan.target.KonanTarget
44
plugins {
55
id 'org.jetbrains.kotlin.multiplatform'
66
id 'org.jetbrains.kotlin.plugin.allopen' version "1.7.20"
7-
id 'org.jetbrains.kotlinx.benchmark' version "0.4.6"
7+
id 'org.jetbrains.kotlinx.benchmark' version "0.4.7"
88
}
99

1010
// how to apply plugin to a specific source set?

examples/kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java'
33
id 'org.jetbrains.kotlin.jvm'
44
id 'org.jetbrains.kotlin.plugin.allopen' version "1.7.20"
5-
id 'org.jetbrains.kotlinx.benchmark' version '0.4.6'
5+
id 'org.jetbrains.kotlinx.benchmark' version '0.4.7'
66
}
77

88

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=org.jetbrains.kotlinx
2-
version=0.4.6
2+
version=0.4.7
33

44
kotlin_version=1.7.20
55
jmhVersion=1.21

plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group=org.jetbrains.kotlinx
2-
version=0.4.6
2+
version=0.4.7
33

44
kotlin_version=1.7.20
55
jmhVersion=1.21

plugin/main/src/kotlinx/benchmark/gradle/BenchmarksPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import org.gradle.util.*
77
class BenchmarksPlugin : Plugin<Project> {
88
companion object {
99
const val PLUGIN_ID = "org.jetbrains.kotlinx.benchmark"
10-
const val PLUGIN_VERSION = "0.4.6"
10+
const val PLUGIN_VERSION = "0.4.7"
1111

1212
const val BENCHMARKS_TASK_GROUP = "benchmark"
1313
const val BENCHMARK_EXTENSION_NAME = "benchmark"

0 commit comments

Comments
 (0)