From dd0da914129978326c15cd8226a972cc0bcd05ff Mon Sep 17 00:00:00 2001 From: Patrick Jackson Date: Sun, 8 Dec 2019 08:17:43 -0500 Subject: [PATCH] update to kotlin 1.3.61 --- README.md | 2 +- app/build.gradle | 2 +- gradle.properties | 2 +- gradle/dependencies.gradle | 5 ++--- gradle/wrapper/gradle-wrapper.properties | 2 +- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1a6956c..781741c 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ To add to project in the common module add the dependency: sourceSets { commonMain { dependencies { - implementation "com.willowtreeapps:fuzzywuzzy-kotlin:0.1.1" + implementation "com.willowtreeapps:fuzzywuzzy-kotlin:0.9.0" } } } diff --git a/app/build.gradle b/app/build.gradle index ab1ea17..fcd8ee4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,7 +5,7 @@ apply plugin: 'com.moowork.node' archivesBaseName = 'fuzzywuzzy-kotlin' group 'com.willowtreeapps' -version '0.1.1' +version '0.9.0' final nodeVersion = '11.2.0' final nodeWorkingDir = project.buildDir final nodeModules = "$nodeWorkingDir/node_modules" diff --git a/gradle.properties b/gradle.properties index 8668c75..6b4d03b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -21,7 +21,7 @@ android.enableJetifier=true kotlin.code.style=official GROUP=com.willowtreeapps.fuzzywuzzy-kotlin -VERSION_NAME=0.1.1 +VERSION_NAME=0.9.0 POM_ARTIFACT_ID=fuzzywuzzy POM_DESCRIPTION=Fuzzy string matching for kotlin multiplatform diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index aad7b2a..7e664e5 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -1,12 +1,11 @@ ext.versions = [ - kotlin : '1.3.30', - kotlinCoroutines: '1.2.0', + kotlin : '1.3.61', + kotlinCoroutines: '1.3.2', dokka : '0.9.17', nodePlugin: '1.2.0' ] ext.deps = [ plugins: [ - android: 'com.android.tools.build:gradle:3.3.0', kotlin : "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}", dokka : "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}", node : "com.moowork.gradle:gradle-node-plugin:${versions.nodePlugin}" diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index b33025f..d788db9 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-5.3.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-all.zip