From 2b5a6e2216ae52a3e26a5fcae4f1eb03c9d8d638 Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Fri, 27 Nov 2020 14:46:53 +0600 Subject: [PATCH] ContentRepo now implements crud repo interface --- .../dev/inmo/postssystem/core/content/api/ContentRepo.kt | 2 +- gradle.properties | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/api/src/commonMain/kotlin/dev/inmo/postssystem/core/content/api/ContentRepo.kt b/core/api/src/commonMain/kotlin/dev/inmo/postssystem/core/content/api/ContentRepo.kt index fe2a6863..183a0bfd 100644 --- a/core/api/src/commonMain/kotlin/dev/inmo/postssystem/core/content/api/ContentRepo.kt +++ b/core/api/src/commonMain/kotlin/dev/inmo/postssystem/core/content/api/ContentRepo.kt @@ -1,3 +1,3 @@ package dev.inmo.postssystem.core.content.api -interface ContentRepo : ReadContentRepo, WriteContentRepo +interface ContentRepo : ReadContentRepo, WriteContentRepo, StandardCRUDRepo diff --git a/gradle.properties b/gradle.properties index b52ce219..e4239360 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ android.enableJetifier=true org.gradle.jvmargs=-Xmx2048m kotlin_version=1.4.20 -kotlin_coroutines_version=1.4.1 +kotlin_coroutines_version=1.4.2 kotlin_serialisation_core_version=1.0.1 kotlin_exposed_version=0.28.1 @@ -19,7 +19,7 @@ uuidVersion=0.2.3 exposed_version=0.28.1 test_sqlite_version=3.32.3.2 -microutils_version=0.4.6 +microutils_version=0.4.7 javax_activation_version=1.1.1