From 50d6101f2287aa993af7637657b6b24ceab8df42 Mon Sep 17 00:00:00 2001 From: rnentjes Date: Mon, 17 Mar 2025 18:15:11 +0000 Subject: [PATCH] Update Kotlin plugin and project version Upgraded the Kotlin multiplatform plugin to version 2.1.10 for better compatibility and features. Changed the project version to 1.1.0-SNAPSHOT to reflect the ongoing development phase. --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index a022d87..4fdc68a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,11 +1,11 @@ plugins { - kotlin("multiplatform") version "2.0.21" + kotlin("multiplatform") version "2.1.10" `maven-publish` signing } group = "nl.astraeus" -version = "1.0.1" +version = "1.1.0-SNAPSHOT" repositories { mavenCentral()