From 97af1366460a8dbfb12c1f0eec67231f1151d26c Mon Sep 17 00:00:00 2001 From: rnentjes Date: Fri, 20 Dec 2024 16:20:53 +0100 Subject: [PATCH] Update dependencies and version numbers Upgraded Kotlin Multiplatform plugin to 2.1.0 and typed-byte-arrays dependency to 0.2.9. Incremented project version to 0.3.3 to reflect associated changes. --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index b8ee6ee..f4bcf02 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,14 +1,14 @@ import org.jetbrains.kotlin.gradle.plugin.KotlinJsCompilerType plugins { - kotlin("multiplatform") version "2.0.21" + kotlin("multiplatform") version "2.1.0" `maven-publish` signing id("org.jetbrains.dokka") version "1.5.31" } group = "nl.astraeus" -version = "0.3.1" +version = "0.3.3" repositories { mavenCentral() @@ -25,7 +25,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - api("nl.astraeus:typed-byte-arrays:0.2.8") + api("nl.astraeus:typed-byte-arrays:0.2.9") } } val commonTest by getting {