Skip to content

Commit

Permalink
0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed Aug 11, 2020
1 parent ff74635 commit dbac420
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README-chs.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ fun test(a1: Int, a2: Any): String = runBlocking { test(a1, a2) }
`build.gradle``build.gradle.kts`
```kotlin
plugins {
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.8.0"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.8.1"
}
```

Expand All @@ -142,7 +142,7 @@ pluginManagement {

本插件会自动添加如下的运行时依赖:
```kotlin
implementation("net.mamoe:kotlin-jvm-blocking-bridge:0.8.0")
implementation("net.mamoe:kotlin-jvm-blocking-bridge:0.8.1")
```
因此只需要安装插件, 而不需要添加依赖即可使用

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ The plugin is ready to use.
`build.gradle` or `build.gradle.kts`
```kotlin
plugins {
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.8.0"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.8.1"
}
```

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object Versions {
const val project = "0.8.0"
const val project = "0.8.1"
const val idePlugin = "1.1.0"

const val kotlin = "1.4.0-rc"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension
import org.jetbrains.kotlin.gradle.plugin.*

internal const val JBB_VERSION = "0.8.0"
internal const val JBB_VERSION = "0.8.1"

internal const val PLUGIN_ID = "net.mamoe.kotlin-jvm-blocking-bridge-compiler-embeddable"

Expand Down

0 comments on commit dbac420

Please sign in to comment.