From 32645aadce021a67a2cfa44547f4003e9a5735e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Apr 2022 05:27:44 +0000 Subject: [PATCH 1/2] Bump kotlinx-coroutines-test from 1.6.0 to 1.6.1 Bumps [kotlinx-coroutines-test](https://github.com/Kotlin/kotlinx.coroutines) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.6.0...1.6.1) --- updated-dependencies: - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- build.gradle | 2 +- core/build.gradle | 2 +- domains/android/viewmodel/build.gradle | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index d07571a..ef0f93f 100644 --- a/build.gradle +++ b/build.gradle @@ -127,7 +127,7 @@ ext.kotlinTest = { dependencies -> dependencies.testImplementation Dependencies.mavenCentral.kotlinTest dependencies.testImplementation "org.jetbrains.kotlin:kotlin-test-junit:1.6.10" dependencies.testImplementation 'io.mockk:mockk:1.12.3' - dependencies.testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0' + dependencies.testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1' dependencies.testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2' dependencies.testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2' diff --git a/core/build.gradle b/core/build.gradle index 7b59171..3d5eb4a 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -8,5 +8,5 @@ dependencies { testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore testFixturesImplementation Dependencies.mavenCentral.kluent testFixturesImplementation 'io.mockk:mockk:1.12.3' - testFixturesImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0' + testFixturesImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1' } \ No newline at end of file diff --git a/domains/android/viewmodel/build.gradle b/domains/android/viewmodel/build.gradle index dac308a..c5d7d0e 100644 --- a/domains/android/viewmodel/build.gradle +++ b/domains/android/viewmodel/build.gradle @@ -9,7 +9,7 @@ dependencies { kotlinFixtures(it) testFixturesImplementation Dependencies.mavenCentral.kotlinCoroutinesCore - testFixturesImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0' + testFixturesImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.1' testFixturesImplementation testFixtures(project(":core")) testFixturesCompileOnly project(":domains:android:viewmodel-stub") } \ No newline at end of file From 39b4fa76f6e04e3029a56b53871517eea825b2d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Apr 2022 05:27:48 +0000 Subject: [PATCH 2/2] Bump kotlinx-coroutines-core from 1.6.0 to 1.6.1 Bumps [kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) from 1.6.0 to 1.6.1. - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.6.0...1.6.1) --- updated-dependencies: - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- dependencies.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dependencies.gradle b/dependencies.gradle index 91151f1..dc85382 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -110,7 +110,7 @@ ext.Dependencies.with { kotlinGradlePlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVer}" kotlinSerializationGradlePlugin = "org.jetbrains.kotlin:kotlin-serialization:${kotlinVer}" kotlinSerializationJson = "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2" - kotlinCoroutinesCore = "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0" + kotlinCoroutinesCore = "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1" kotlinTest = "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVer}" sqldelightGradlePlugin = "com.squareup.sqldelight:gradle-plugin:${sqldelightVer}"