Skip to content

Commit 8c5fc98

Browse files
author
Abduqodiri Qurbonzoda
committed
Promote the library version to 0.4.1
1 parent 0f722c0 commit 8c5fc98

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.0"
3+
classpath "org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.4.1"
44
}
55
}
66

examples/kotlin-kts/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
java
99
kotlin("jvm")
1010
kotlin("plugin.allopen") version "1.6.0"
11-
id("org.jetbrains.kotlinx.benchmark") version "0.4.0"
11+
id("org.jetbrains.kotlinx.benchmark") version "0.4.1"
1212
}
1313

1414
sourceSets.all {

examples/kotlin-multiplatform/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id 'org.jetbrains.kotlin.multiplatform'
33
id 'org.jetbrains.kotlin.plugin.allopen' version "1.6.0"
4-
id 'org.jetbrains.kotlinx.benchmark' version "0.4.0"
4+
id 'org.jetbrains.kotlinx.benchmark' version "0.4.1"
55
}
66

77
// 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.6.0"
5-
id 'org.jetbrains.kotlinx.benchmark' version '0.4.0'
5+
id 'org.jetbrains.kotlinx.benchmark' version '0.4.1'
66
}
77

88

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set up your maven coordinates here, artifactId is defined per project.
22
group = org.jetbrains.kotlinx
3-
version = 0.4.0
3+
version = 0.4.1
44

55
kotlin.code.style=official
66
kotlin_version=1.6.0

plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
kotlin.code.style=official
22

33
# Set up your maven coordinates here, artifactId is defined per project.
4-
version = 0.4.0
4+
version = 0.4.1
55
group = org.jetbrains.kotlinx
66

77
kotlin_version=1.6.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import org.jetbrains.kotlin.gradle.plugin.*
88
class BenchmarksPlugin : Plugin<Project> {
99
companion object {
1010
const val PLUGIN_ID = "org.jetbrains.kotlinx.benchmark"
11-
const val PLUGIN_VERSION = "0.4.0"
11+
const val PLUGIN_VERSION = "0.4.1"
1212

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

0 commit comments

Comments
 (0)