Skip to content

Commit

Permalink
Update kotlinCoroutines to v1.6.2 (#3263)
Browse files Browse the repository at this point in the history
* Update kotlinCoroutines to v1.6.2

* Update build.gradle

* Update build.gradle

* Disable freezing

* Update libs.versions.toml

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Alec Strong <AlecStrong@users.noreply.github.com>
Co-authored-by: Alec Strong <astrong@squareup.com>
  • Loading branch information
4 people committed Jun 22, 2022
1 parent 2b8d590 commit 2e4e578
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 22 deletions.
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

0 comments on commit 2e4e578

Please sign in to comment.