From c11e80d22137819c93a3f9504a805fc347ddbaa3 Mon Sep 17 00:00:00 2001 From: Infendro Date: Thu, 22 Jan 2026 12:51:45 +0100 Subject: [PATCH] bump version to 1.3.0, add targets --- README.md | 2 +- build.gradle.kts | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 23e2d9b..f392dd7 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ repositories { } dependencies { - implementation("com.infendro:mac:1.2.0") + implementation("com.infendro:mac:1.3.0") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 46874c8..168c970 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,8 +1,11 @@ +@file:OptIn(ExperimentalWasmDsl::class) + import com.infendro.plugin.infendro import com.infendro.plugin.token +import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl group = "com.infendro" -version = "1.2.0" +version = "1.3.0" plugins { alias(libs.plugins.infendro) @@ -13,9 +16,13 @@ plugins { kotlin { jvm() linuxX64() - js { - nodejs() - } + linuxArm64() + mingwX64() + macosX64() + macosArm64() + js { nodejs() } + wasmJs { nodejs() } + wasmWasi { nodejs() } repositories { infendro()