Skip to content

Commit

Permalink
Update the library version in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Abduqodiri Qurbonzoda authored and qurbonzoda committed Jun 6, 2024
1 parent 894326d commit 875ec08
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ dedicated to setting up benchmarking in those specific project types.
```kotlin
// build.gradle.kts
plugins {
id("org.jetbrains.kotlinx.benchmark") version "0.4.10"
id("org.jetbrains.kotlinx.benchmark") version "0.4.11"
}
```

Expand All @@ -80,7 +80,7 @@ dedicated to setting up benchmarking in those specific project types.
sourceSets {
commonMain {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.10")
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.11")
}
}
}
Expand All @@ -105,7 +105,7 @@ dedicated to setting up benchmarking in those specific project types.
```groovy
// build.gradle
plugins {
id 'org.jetbrains.kotlinx.benchmark' version '0.4.10'
id 'org.jetbrains.kotlinx.benchmark' version '0.4.11'
}
```

Expand All @@ -128,7 +128,7 @@ dedicated to setting up benchmarking in those specific project types.
sourceSets {
commonMain {
dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.10'
implementation 'org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.11'
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions docs/kotlin-jvm-project-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To configure Kotlin/JVM and Java projects for benchmarking, follow these steps:
```kotlin
// build.gradle.kts
plugins {
id("org.jetbrains.kotlinx.benchmark") version "0.4.10"
id("org.jetbrains.kotlinx.benchmark") version "0.4.11"
}
```

Expand All @@ -25,7 +25,7 @@ To configure Kotlin/JVM and Java projects for benchmarking, follow these steps:
```groovy
// build.gradle
plugins {
id 'org.jetbrains.kotlinx.benchmark' version '0.4.10'
id 'org.jetbrains.kotlinx.benchmark' version '0.4.11'
}
```

Expand Down Expand Up @@ -66,7 +66,7 @@ To configure Kotlin/JVM and Java projects for benchmarking, follow these steps:
```kotlin
// build.gradle.kts
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.10")
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.11")
}
```

Expand All @@ -77,7 +77,7 @@ To configure Kotlin/JVM and Java projects for benchmarking, follow these steps:
```groovy
// build.gradle
dependencies {
implementation 'org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.10'
implementation 'org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.4.11'
}
```

Expand Down

0 comments on commit 875ec08

Please sign in to comment.