Skip to content

Commit a001683

Browse files
authored
Update coroutines to 1.5.1, Kotlin to 1.5.21 (#24)
* Update coroutines to 1.5.1, Kotlin to 1.5.21 Signed-off-by: Ryan Nett <JNett96@gmail.com> * Update compiler plugin utils for new Kotlin Signed-off-by: Ryan Nett <JNett96@gmail.com> * Update changelog Signed-off-by: Ryan Nett <JNett96@gmail.com>
1 parent 4520dc7 commit a001683

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Breaking changes:
99
Minor changes:
1010
* [#23](https://github.com/rnett/krosstalk/pull/23) Update Ktor to 1.6.1 and Seraialization to 1.2.2. Does not enable watchOsX64 for Ktor plugins,
1111
the issue being fixed was a false positive.
12+
* [#24](https://github.com/rnett/krosstalk/pull/24) Update Kotlin to 1.5.21, coroutines to 1.5.1, and compiler-plugin utils to 1.0.2.
1213

1314
## 1.1.2
1415

buildSrc/src/main/kotlin/Dependencies.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
object Dependencies {
2-
const val kotlin = "1.5.20"
2+
const val kotlin = "1.5.21"
33
const val serialization = "1.2.2"
44
const val dokka = "1.5.0"
55

66
const val ktor = "1.6.1"
77

88
const val autoService = "1.0-rc6"
99

10-
const val compilerPluginUtils = "1.0.1"
10+
const val compilerPluginUtils = "1.0.2"
1111

1212
const val gradlePluginPublish = "0.15.0"
1313
const val buildconfig = "3.0.0"

tests/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
2-
kotlin("multiplatform") version "1.5.20" apply false
3-
kotlin("jvm") version "1.5.20" apply false
4-
id("org.jetbrains.kotlin.plugin.serialization") version "1.5.20" apply false
2+
kotlin("multiplatform") version "1.5.21" apply false
3+
kotlin("jvm") version "1.5.21" apply false
4+
id("org.jetbrains.kotlin.plugin.serialization") version "1.5.21" apply false
55
id("org.jetbrains.compose") version "0.4.0-build211" apply false
66
id("com.github.rnett.krosstalk") apply false
77
id("com.github.psxpaul.execfork") version "0.1.15" apply false
@@ -13,7 +13,7 @@ allprojects {
1313
version = "1.0.3-ALPHA"
1414

1515
var ktor_version: String by extra("1.6.1")
16-
var coroutines_version: String by extra("1.5.0")
16+
var coroutines_version: String by extra("1.5.1")
1717
val serialization_version: String by extra("1.2.2")
1818

1919
repositories {

0 commit comments

Comments
 (0)