Upgrade to Kotlin 1.6.0, Gradle 7.3

This commit is contained in:
Edwin Jakobs
2021-11-20 21:18:56 +01:00
parent df1782f317
commit a02d3fc44f
4 changed files with 6 additions and 6 deletions

View File

@@ -121,11 +121,11 @@ enum class Logging {
/* What type of logging should this project use? */
val applicationLogging = Logging.FULL
val kotlinVersion = "1.5.21"
val kotlinVersion = "1.6.0"
plugins {
java
kotlin("jvm") version("1.5.21")
kotlin("jvm") version("1.6.0")
id("com.github.johnrengelman.shadow") version ("6.1.0")
id("org.beryx.runtime") version ("1.11.4")
}
@@ -173,7 +173,7 @@ dependencies {
implementation(openrndr("animatable"))
implementation(openrndr("extensions"))
implementation(openrndr("filter"))
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core","1.5.0")
implementation("org.jetbrains.kotlinx", "kotlinx-coroutines-core","1.5.2")
implementation("io.github.microutils", "kotlin-logging-jvm","2.0.6")
when(applicationLogging) {

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@@ -9,7 +9,7 @@ import org.openrndr.extra.olive.oliveProgram
* oliveProgram {} can be changed while the program is running.
*/
suspend fun main() = application {
fun main() = application {
configure {
width = 800
height = 800

View File

@@ -6,7 +6,7 @@ import org.openrndr.draw.tint
import kotlin.math.cos
import kotlin.math.sin
suspend fun main() = application {
fun main() = application {
configure {
width = 768
height = 576