Skip to content

Commit 5f099bf

Browse files
author
Abduqodiri Qurbonzoda
committed
Promote the library version to 0.3.1
1 parent fc09aa3 commit 5f099bf

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Use plugin in `build.gradle`:
3434

3535
```groovy
3636
plugins {
37-
id 'org.jetbrains.kotlinx.benchmark' version '0.3.0'
37+
id 'org.jetbrains.kotlinx.benchmark' version '0.3.1'
3838
}
3939
```
4040

@@ -87,7 +87,7 @@ kotlin {
8787
sourceSets {
8888
commonMain {
8989
dependencies {
90-
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.3.0")
90+
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.3.1")
9191
}
9292
}
9393
}

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.3.0"
3+
classpath "org.jetbrains.kotlinx:kotlinx-benchmark-plugin:0.3.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.4.0"
11-
id("org.jetbrains.kotlinx.benchmark") version "0.3.0"
11+
id("org.jetbrains.kotlinx.benchmark") version "0.3.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.4.0"
4-
id 'org.jetbrains.kotlinx.benchmark' version "0.3.0"
4+
id 'org.jetbrains.kotlinx.benchmark' version "0.3.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.4.0"
5-
id 'org.jetbrains.kotlinx.benchmark' version '0.3.0'
5+
id 'org.jetbrains.kotlinx.benchmark' version '0.3.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.3.0
3+
version = 0.3.1
44

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

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.3.0
4+
version = 0.3.1
55
group = org.jetbrains.kotlinx
66

77
kotlin_version=1.4.30

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.3.0"
11+
const val PLUGIN_VERSION = "0.3.1"
1212

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

0 commit comments

Comments
 (0)