Skip to content

Commit

Permalink
Merge pull request #37 from ForteScarlet/Upgrade-Kt1910
Browse files Browse the repository at this point in the history
Upgrade Kotlin to v1.9.10
  • Loading branch information
ForteScarlet committed Sep 5, 2023
2 parents 88b1bb5 + 66018e9 commit 113876f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
gradlePluginPortal()
}

val kotlinVersion = "1.9.0"
val kotlinVersion = "1.9.10"
val dokkaPluginVersion = "1.8.20"
val gradleCommon = "0.0.11"

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/IProject.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object IProject : ProjectDetail() {
const val DESCRIPTION = "Generate platform-compatible functions for Kotlin suspend functions"
const val HOMEPAGE = "https://github.com/ForteScarlet/kotlin-suspend-transform-compiler-plugin"

override val version: Version = version(0, 5, 0)
override val version: Version = version(0, 5, 1)

override val homepage: String get() = HOMEPAGE

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ public fun <T> `$runInAsync$`(
block: suspend () -> T,
): Promise<T> {
return CoroutineScope4Js.promise(start = CoroutineStart.UNDISPATCHED) { block() }
}
}

0 comments on commit 113876f

Please sign in to comment.