From 248c1eb6173b995015a0d380ed57e6facd56ba8a Mon Sep 17 00:00:00 2001 From: Edwin Jakobs Date: Fri, 12 Mar 2021 08:58:28 +0100 Subject: [PATCH] Upgrade to OPENRNDR 0.3.46 --- build.gradle.kts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index ce85cff..6e35f2c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform /* the name of this project, default is the template version but you are free to change these */ group = "org.openrndr.template" -version = "0.3.14" +version = "0.3.15" val applicationMainClass = "TemplateProgramKt" @@ -79,10 +79,10 @@ val openrndrFeatures = setOf( /* Which version of OPENRNDR and ORX should be used? */ val openrndrUseSnapshot = false -val openrndrVersion = if (openrndrUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.44" +val openrndrVersion = if (openrndrUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.46" val orxUseSnapshot = false -val orxVersion = if (orxUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.53" +val orxVersion = if (orxUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.56" val ormlUseSnapshot = false val ormlVersion = if (ormlUseSnapshot) "0.4.0-SNAPSHOT" else "0.3.0-rc.5" @@ -121,11 +121,11 @@ enum class Logging { /* What type of logging should this project use? */ val applicationLogging = Logging.FULL -val kotlinVersion = "1.4.0" +val kotlinVersion = "1.4.31" plugins { java - kotlin("jvm") version("1.4.0") + kotlin("jvm") version("1.4.31") id("com.github.johnrengelman.shadow") version ("6.1.0") id("org.beryx.runtime") version ("1.11.4") } @@ -174,8 +174,8 @@ dependencies { implementation(openrndr("extensions")) implementation(openrndr("filter")) - implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core","1.3.9") - implementation("io.github.microutils", "kotlin-logging","1.12.0") + implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core","1.4.2") + implementation("io.github.microutils", "kotlin-logging-jvm","2.0.4") when(applicationLogging) { Logging.NONE -> {