Skip to content

Commit

Permalink
0.5.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed Aug 7, 2020
1 parent dc12ef6 commit 46f21ff
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 @@ -125,7 +125,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.4.3"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.5.0"
}
```

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

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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ This plugin requires some new features published in Kotlin `1.4.0-rc`, therefore
`build.gradle` or `build.gradle.kts`
```kotlin
plugins {
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.4.3"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.5.0"
}
```

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.4.3"
const val project = "0.5.0"
const val idePlugin = "0.4.0"

const val kotlin = "1.4.0-rc"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.gradle.api.Project
import org.gradle.api.provider.Provider
import org.jetbrains.kotlin.gradle.plugin.*

internal const val JBB_VERSION = "0.4.3"
internal const val JBB_VERSION = "0.5.0"

open class BlockingBridgePluginExtension {
var enabled: Boolean = true
Expand Down

0 comments on commit 46f21ff

Please sign in to comment.