Skip to content

Commit

Permalink
Promote the library version to 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
qurbonzoda committed Nov 17, 2022
1 parent 6ad5671 commit 4200066
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
dependencies {
classpath "org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.4.5"
classpath "org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.4.6"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin-kts/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
java
kotlin("jvm")
kotlin("plugin.allopen") version "1.7.20"
id("org.jetbrains.kotlinx.benchmark") version "0.4.5"
id("org.jetbrains.kotlinx.benchmark") version "0.4.6"
}

sourceSets.all {
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin-multiplatform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.konan.target.KonanTarget
plugins {
id 'org.jetbrains.kotlin.multiplatform'
id 'org.jetbrains.kotlin.plugin.allopen' version "1.7.20"
id 'org.jetbrains.kotlinx.benchmark' version "0.4.5"
id 'org.jetbrains.kotlinx.benchmark' version "0.4.6"
}

// how to apply plugin to a specific source set?
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm'
id 'org.jetbrains.kotlin.plugin.allopen' version "1.7.20"
id 'org.jetbrains.kotlinx.benchmark' version '0.4.5'
id 'org.jetbrains.kotlinx.benchmark' version '0.4.6'
}


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=org.jetbrains.kotlinx
version=0.4.5
version=0.4.6

kotlin_version=1.7.20
jmhVersion=1.21
Expand Down
2 changes: 1 addition & 1 deletion plugin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=org.jetbrains.kotlinx
version=0.4.5
version=0.4.6

kotlin_version=1.7.20
jmhVersion=1.21
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.gradle.util.*
class BenchmarksPlugin : Plugin<Project> {
companion object {
const val PLUGIN_ID = "org.jetbrains.kotlinx.benchmark"
const val PLUGIN_VERSION = "0.4.5"
const val PLUGIN_VERSION = "0.4.6"

const val BENCHMARKS_TASK_GROUP = "benchmark"
const val BENCHMARK_EXTENSION_NAME = "benchmark"
Expand Down

0 comments on commit 4200066

Please sign in to comment.