From 12ac06ac08902a9849e9f4adc37e4a8499b4db34 Mon Sep 17 00:00:00 2001 From: Bojan Date: Mon, 24 May 2021 19:19:10 +0200 Subject: [PATCH] Update Kotlin to 1.5.10. --- CHANGELOG.md | 6 ++++++ README.md | 8 ++++---- build.properties | 2 +- config.gradle | 4 ++-- gradle/libs.versions.toml | 2 +- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04d60a25..4a085d42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Changelog ========= +## Version 5.3.5 + +_2021-05-24_ + +* Update Kotlin to 1.5.10. + ## Version 5.3.4 _2021-05-20_ diff --git a/README.md b/README.md index 6c9bc21f..49941c70 100644 --- a/README.md +++ b/README.md @@ -44,13 +44,13 @@ Then add the following dependencies in your app `build.gradle` or `build.gradle. **Groovy** ```groovy -debugImplementation "com.infinum.dbinspector:dbinspector:5.3.4" -releaseImplementation "com.infinum.dbinspector:dbinspector-no-op:5.3.4" +debugImplementation "com.infinum.dbinspector:dbinspector:5.3.5" +releaseImplementation "com.infinum.dbinspector:dbinspector-no-op:5.3.5" ``` **KotlinDSL** ```kotlin -debugImplementation("com.infinum.dbinspector:dbinspector:5.3.4") -releaseImplementation("com.infinum.dbinspector:dbinspector-no-op:5.3.4") +debugImplementation("com.infinum.dbinspector:dbinspector:5.3.5") +releaseImplementation("com.infinum.dbinspector:dbinspector-no-op:5.3.5") ``` ### Usage diff --git a/build.properties b/build.properties index 6c9e8926..75eda70d 100644 --- a/build.properties +++ b/build.properties @@ -1,2 +1,2 @@ # suppress inspection "UnusedProperty" for whole file -build.debug=true +build.debug=false diff --git a/config.gradle b/config.gradle index b2d1c80f..3bf11bce 100644 --- a/config.gradle +++ b/config.gradle @@ -7,7 +7,7 @@ ext { ] releaseConfig = [ "group" : "com.infinum.dbinspector", - "version" : "5.3.4", - "versionCode": 5 * 100 * 100 + 3 * 100 + 4 + "version" : "5.3.5", + "versionCode": 5 * 100 * 100 + 3 * 100 + 5 ] } \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 55102ad2..5efaeb02 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,7 +1,7 @@ [versions] dbinspector = "5.3.4" gradle = "4.2.1" -kotlin = "1.5.0" +kotlin = "1.5.10" coroutines = "1.5.0" core = "1.5.0" appcompat = "1.3.0"