Skip to content

Commit 32166c3

Browse files
fix(deps): update all dependencies
| datasource | package | from | to | | ---------- | ------------------------------------------------ | ------ | ------ | | maven | androidx.test.espresso:espresso-core | 3.4.0 | 3.5.1 | | maven | io.coil-kt:coil | 2.3.0 | 2.4.0 | | maven | io.insert-koin:koin-test | 3.4.0 | 3.4.1 | | maven | io.insert-koin:koin-test-junit4 | 3.4.0 | 3.4.1 | | maven | io.insert-koin:koin-android | 3.4.0 | 3.4.2 | | maven | io.insert-koin:koin-core | 3.4.0 | 3.4.2 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-test | 1.7.1 | 1.7.2 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-android | 1.7.1 | 1.7.2 | | maven | org.jetbrains.kotlinx:kotlinx-coroutines-core | 1.7.1 | 1.7.2 | | maven | com.squareup.leakcanary:leakcanary-android | 2.11 | 2.12 | | maven | com.github.ben-manes:gradle-versions-plugin | 0.46.0 | 0.47.0 | | maven | dev.drewhamilton.poko:poko-gradle-plugin | 0.13.0 | 0.13.1 | | maven | com.diffplug.spotless:spotless-plugin-gradle | 6.18.0 | 6.19.0 | | maven | org.jetbrains.kotlin:kotlin-gradle-plugin | 1.8.21 | 1.8.22 | | maven | org.jetbrains.kotlin:kotlin-test-junit | 1.8.21 | 1.8.22 |
1 parent e197ea0 commit 32166c3

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ buildscript {
1616
dependencies {
1717
classpath("com.android.tools.build:gradle:7.4.2")
1818
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
19-
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.18.0")
20-
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.13.0")
19+
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.19.0")
20+
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.13.1")
2121
classpath("org.jacoco:org.jacoco.core:0.8.10")
2222
classpath("com.vanniktech:gradle-android-junit-jacoco-plugin:0.17.0-SNAPSHOT")
23-
classpath("com.github.ben-manes:gradle-versions-plugin:0.46.0")
23+
classpath("com.github.ben-manes:gradle-versions-plugin:0.47.0")
2424
}
2525
}
2626

buildSrc/src/main/kotlin/deps.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import org.gradle.plugin.use.PluginDependenciesSpec
77
import org.gradle.plugin.use.PluginDependencySpec
88

99
const val ktlintVersion = "0.46.1"
10-
const val kotlinVersion = "1.8.21"
10+
const val kotlinVersion = "1.8.22"
1111

1212
object appConfig {
1313
const val applicationId = "com.hoc.flowmvi"
@@ -49,27 +49,27 @@ object deps {
4949
const val converterMoshi = "com.squareup.retrofit2:converter-moshi:2.9.0"
5050
const val loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:4.11.0"
5151
const val moshiKotlin = "com.squareup.moshi:moshi-kotlin:1.15.0"
52-
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.11"
52+
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.12"
5353
}
5454

5555
object coroutines {
56-
private const val version = "1.7.1"
56+
private const val version = "1.7.2"
5757

5858
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version"
5959
const val android = "org.jetbrains.kotlinx:kotlinx-coroutines-android:$version"
6060
const val test = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$version"
6161
}
6262

6363
object koin {
64-
private const val version = "3.4.0"
64+
private const val version = "3.4.2"
6565

6666
const val core = "io.insert-koin:koin-core:$version"
6767
const val android = "io.insert-koin:koin-android:$version"
6868
const val testJunit4 = "io.insert-koin:koin-test-junit4:$version"
6969
const val test = "io.insert-koin:koin-test:$version"
7070
}
7171

72-
const val coil = "io.coil-kt:coil:2.3.0"
72+
const val coil = "io.coil-kt:coil:2.4.0"
7373
const val viewBindingDelegate = "com.github.hoc081098:ViewBindingDelegate:1.4.0"
7474
const val flowExt = "io.github.hoc081098:FlowExt:0.6.1"
7575
const val timber = "com.jakewharton.timber:timber:5.0.1"
@@ -87,7 +87,7 @@ object deps {
8787
const val junit = "androidx.test.ext:junit-ktx:1.1.5"
8888

8989
object espresso {
90-
const val core = "androidx.test.espresso:espresso-core:3.4.0"
90+
const val core = "androidx.test.espresso:espresso-core:3.5.1"
9191
}
9292
}
9393

0 commit comments

Comments
 (0)