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.
This commit is contained in:
2024-12-20 16:20:53 +01:00
parent cd7d63807e
commit 97af136646

View File

@@ -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 {