From 4f1c02b4ebcefabdb83e5ba7439bc91ef2b7c314 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 19:48:58 +0000 Subject: [PATCH] Update dependency com.google.truth:truth to v1.2.0 --- gradle/libs.versions.toml | 2 +- moshi-ir/moshi-kotlin-tests/build.gradle.kts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index e63a601f..3e9843e6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -83,6 +83,6 @@ retrofit-moshi = { module = "com.squareup.retrofit2:converter-moshi", version.re # Test libs junit = { module = "junit:junit", version = "4.13.2" } -truth = { module = "com.google.truth:truth", version = "1.1.5" } +truth = { module = "com.google.truth:truth", version = "1.2.0" } kotlinCompileTesting = { module = "dev.zacsweers.kctfork:core", version.ref = "kotlinCompileTesting" } kotlinCompileTesting-ksp = { module = "dev.zacsweers.kctfork:ksp", version.ref ="kotlinCompileTesting" } diff --git a/moshi-ir/moshi-kotlin-tests/build.gradle.kts b/moshi-ir/moshi-kotlin-tests/build.gradle.kts index b9064fbe..efba913c 100644 --- a/moshi-ir/moshi-kotlin-tests/build.gradle.kts +++ b/moshi-ir/moshi-kotlin-tests/build.gradle.kts @@ -46,7 +46,7 @@ tasks.withType().configureEach { dependencies { testImplementation("junit:junit:4.13.2") - testImplementation("com.google.truth:truth:1.1.5") + testImplementation("com.google.truth:truth:1.2.0") testImplementation("com.squareup.moshi:moshi:1.15.0") testImplementation(kotlin("reflect")) testImplementation(project(":moshi-ir:moshi-kotlin-tests:extra-moshi-test-module"))