Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update kotlinCoroutines to v1.6.2 #3263

Merged
merged 7 commits into from Jun 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/PR.yml
Expand Up @@ -75,10 +75,6 @@ jobs:
if: matrix.os == 'macOS-latest' && matrix.job == 'test'
run: ./gradlew iosX64Test --stacktrace

- name: Run ios tests with strict memory model
if: matrix.os == 'macOS-latest' && matrix.job == 'test'
run: ./gradlew iosX64Test -Pkotlin.native.binary.memoryModel=strict --stacktrace

# Build the sample
- name: Build the sample
if: matrix.os == 'macOS-latest' && matrix.job == 'gradle-plugin-tests'
Expand Down
7 changes: 0 additions & 7 deletions extensions/async-extensions/build.gradle
Expand Up @@ -23,13 +23,6 @@ kotlin {
implementation project(':drivers:sqlite-driver')
}
}
nativeMain {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${deps.versions.kotlinCoroutines.get()}-native-mt") {
force = true
}
}
}
}

sourceSets.matching { it.name.endsWith("Test") }.all {
Expand Down
10 changes: 0 additions & 10 deletions extensions/coroutines-extensions/build.gradle
Expand Up @@ -38,19 +38,9 @@ kotlin {
implementation project(':drivers:sqljs-driver')
}
}
nativeMain {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${deps.versions.kotlinCoroutines.get()}-native-mt") {
force = true
}
}
}
nativeTest {
dependencies {
implementation project(':drivers:native-driver')
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${deps.versions.kotlinCoroutines.get()}-native-mt") {
force = true
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
@@ -1,7 +1,7 @@
[versions]
kotlin = "1.7.0"
dokka = "1.6.10"
kotlinCoroutines = "1.6.1"
kotlinCoroutines = "1.6.3"
idea = "211.7628.21" # Android Studio Bumblebee (see https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html)
androidxSqlite = "2.2.0"
schemaCrawler = "16.16.18"
Expand Down