Skip to content

Commit

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ If you're developing a library with KJBB, you need to install the Gradle plugin
`build.gradle` or `build.gradle.kts`
```kotlin
plugins {
id("net.mamoe.kotlin-jvm-blocking-bridge") version "1.0.3"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "1.0.5"
}
```

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

The plugin will automatically install runtime library for you, as:
```kotlin
implementation("net.mamoe:kotlin-jvm-blocking-bridge:1.0.3")
implementation("net.mamoe:kotlin-jvm-blocking-bridge:1.0.5")
```
Therefore, you need only to install the plugin, and the compiler plugin will work finely.

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 = "1.0.4"
const val project = "1.0.5"
const val idePlugin = "1.2.1"

const val kotlin = "1.4.0"
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 = "1.0.3"
internal const val JBB_VERSION = "1.0.5"

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

Expand Down

0 comments on commit eaeb541

Please sign in to comment.