Skip to content

Commit

Permalink
0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed Aug 11, 2020
1 parent 5b7cf4b commit fffc6c6
Show file tree
Hide file tree
Showing 5 changed files with 8 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 @@ -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.7.0"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.8.0"
}
```

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

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

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.7.0"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "0.8.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.7.0"
const val project = "0.8.0"
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.7.0"
internal const val JBB_VERSION = "0.8.0"

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

Expand Down
4 changes: 3 additions & 1 deletion runtime/gradle/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,9 @@ afterEvaluate {
}


apply from: project.file("gradle/bintray.gradle")
if (upload.Bintray.isBintrayAvailable(project)) {
apply from: project.file("gradle/bintray.gradle")
}

/*
task bintrayUpload(dependsOn: publish)
Expand Down

0 comments on commit fffc6c6

Please sign in to comment.