From 461f0e514af6fc420aeea1fb96889c09a5f2e04f Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Tue, 3 May 2022 21:58:17 +0200 Subject: [PATCH] Require Kotlin 1.6+ --- lib/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index effa147..a4926b9 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -29,8 +29,8 @@ dependencies { ).onEach { implementation(it) { version { - strictly("[1.5,1.9)") - prefer("1.8.20") + strictly("[1.6,1.9)") + prefer("1.8.21") } } }