Skip to content

Commit

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

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

const val kotlin = "1.5.20"
const val coroutines = "1.5.0-RC"
const val kotlin = "1.5.30-M1"
const val coroutines = "1.5.0"
}
6 changes: 4 additions & 2 deletions ide-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,17 @@ version = Versions.idePlugin

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version.set("2021.1")
version.set("2021.2")
downloadSources.set(true)
updateSinceUntilBuild.set(false)

sandboxDir.set(projectDir.resolve("run/idea-sandbox").absolutePath)

plugins.set(
listOf(
"org.jetbrains.kotlin:211-1.5.0-release-759-IJ6693.72", "java"
// "org.jetbrains.kotlin:211-1.5.30-M1-release-141-IJ7442.40@eap",
"org.jetbrains.kotlin",
"java"
)
)
}
Expand Down

0 comments on commit 5c170f3

Please sign in to comment.