From 9603ab5d1851c2c33e30e7ccbfc94330fd93412c Mon Sep 17 00:00:00 2001 From: Romain Guy Date: Fri, 7 Oct 2022 08:40:27 -0700 Subject: [PATCH] Update to Kotlin 1.7.20 --- README.md | 2 +- build.gradle.kts | 2 +- gradle.properties | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 06bd2cd..72ddc28 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ repositories { } dependencies { - implementation 'dev.romainguy:kotlin-math:1.5.1' + implementation 'dev.romainguy:kotlin-math:1.5.2' } ``` diff --git a/build.gradle.kts b/build.gradle.kts index e8bbd0d..1f91601 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ import org.jetbrains.kotlin.konan.target.HostManager import java.net.URL plugins { - kotlin("multiplatform") version "1.7.0" + kotlin("multiplatform") version "1.7.20" id("io.github.gradle-nexus.publish-plugin") version "1.1.0" id("org.jetbrains.dokka") version "1.6.0" id("maven-publish") diff --git a/gradle.properties b/gradle.properties index 96e8aab..d8de165 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=dev.romainguy -VERSION_NAME=1.5.1 +VERSION_NAME=1.5.2 POM_DESCRIPTION=Graphics oriented math library for Kotlin