1.3.0 release #3

Merged
Infendro merged 5 commits from develop into main 2026-01-29 16:41:55 +00:00
2 changed files with 12 additions and 5 deletions
Showing only changes of commit c11e80d221 - Show all commits

View File

@@ -15,7 +15,7 @@ repositories {
}
dependencies {
implementation("com.infendro:mac:1.2.0")
implementation("com.infendro:mac:1.3.0")
}
```

View File

@@ -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()