Skip to content

Commit

Permalink
1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed Aug 18, 2020
1 parent 8746f48 commit 5ecff64
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 20 deletions.
15 changes: 0 additions & 15 deletions .github/workflows/bintray.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,3 @@ jobs:
- name: Gradle :mirai-console:bintrayUpload
run: ./gradlew :kotlin-jvm-blocking-bridge:bintrayUpload :kotlin-jvm-blocking-bridge-compiler:bintrayUpload :kotlin-jvm-blocking-bridge-ide:bintrayUpload -Dbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_user=${{ secrets.BINTRAY_USER }} -Dbintray_key=${{ secrets.BINTRAY_KEY }} -Pbintray_key=${{ secrets.BINTRAY_KEY }}


# - name: Upload artifact
# uses: actions/[email protected]
# with:
# # Artifact name
# name: mirai-core
# # Directory containing files to upload
# path: "mirai-core/build/libs/mirai-core-*-all.jar"
# - name: Upload artifact
# uses: actions/[email protected]
# with:
# # Artifact name
# name: mirai-core-qqandroid-all
# # Directory containing files to upload
# path: "mirai-core-qqandroid/build/libs/mirai-core-qqandroid-*-all.jar"
4 changes: 2 additions & 2 deletions README-chs.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,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 "1.0.0"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "1.0.2"
}
```

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

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

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

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.0"
const val project = "1.0.2"
const val idePlugin = "1.2.0"

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.0"
internal const val JBB_VERSION = "1.0.2"

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

Expand Down

0 comments on commit 5ecff64

Please sign in to comment.