Skip to content

Commit

Permalink
Release version 1.10.6-1530.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Him188 committed Aug 6, 2021
1 parent 5c170f3 commit d6bae4f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@file:Suppress("MemberVisibilityCanBePrivate")

object Versions {
const val project = "1.10.6-1530"
const val project = "1.10.6-1530.2"
const val idePlugin = project

const val kotlin = "1.5.30-M1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import org.jetbrains.kotlin.resolve.BindingContext
import org.jetbrains.kotlin.resolve.checkers.DeclarationCheckerContext
import org.jetbrains.kotlin.resolve.descriptorUtil.parents
import org.jetbrains.kotlin.resolve.source.KotlinSourceElement
import org.jetbrains.kotlin.resolve.source.PsiSourceElement
import org.jetbrains.kotlin.resolve.source.PsiSourceFile
import org.jetbrains.kotlin.resolve.source.getPsi

Expand Down Expand Up @@ -148,4 +149,4 @@ internal fun DeclarationDescriptor.jvmBlockingBridgeAnnotationPsi(): PsiElement?
internal fun DeclarationDescriptor.jvmBlockingBridgeAnnotation(): AnnotationDescriptor? =
annotations.findAnnotation(JVM_BLOCKING_BRIDGE_FQ_NAME)

internal fun AnnotationDescriptor.findPsi(): PsiElement? = source.getPsi()
internal fun AnnotationDescriptor.findPsi(): PsiElement? = (source as? PsiSourceElement)?.psi
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import org.jetbrains.kotlin.gradle.dsl.KotlinJvmProjectExtension
import org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension
import org.jetbrains.kotlin.gradle.plugin.*

internal const val KJBB_VERSION = "1.10.6"
internal const val KJBB_VERSION = "1.10.6-1530.2"

internal fun BlockingBridgePluginExtension.toSubpluginOptionList(): List<SubpluginOption> {
return listOf(
Expand Down
2 changes: 1 addition & 1 deletion ide-plugin/run/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.4.21"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "1.10.6"
id("net.mamoe.kotlin-jvm-blocking-bridge") version "1.10.6-1530.2"
}

blockingBridge {
Expand Down

0 comments on commit d6bae4f

Please sign in to comment.