Skip to content

Commit 81562bf

Browse files
committed
Update dependency com.javiersc.hubdle to v0.8.3
| datasource | package | from | to | | ---------- | ----------------------------------------------------- | ----- | ----- | | maven | com.javiersc.hubdle:com.javiersc.hubdle.gradle.plugin | 0.8.2 | 0.8.3 |
1 parent 16b1ff5 commit 81562bf

File tree

10 files changed

+59
-7
lines changed

10 files changed

+59
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
### Added
66

7+
- WAsm JS browser support
8+
- WAsm JS d8 support
9+
- WAsm JS Node support
10+
- WAsm WAsi support
11+
712
### Changed
813

914
### Deprecated
@@ -14,7 +19,7 @@
1419

1520
### Updated
1621

17-
- `com.javiersc.hubdle:com.javiersc.hubdle.gradle.plugin -> 0.8.2`
22+
- `com.javiersc.hubdle:com.javiersc.hubdle.gradle.plugin -> 0.8.3`
1823
- `gradle -> 8.12.1`
1924

2025
## [0.3.0] - 2025-01-11

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
hubdle = "0.8.2"
2+
hubdle = "0.8.3"
33

44
[plugins]
55
javiersc-hubdle = { id = "com.javiersc.hubdle", version.ref = "hubdle" }

kotlin-stdlib/build.gradle.kts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,16 @@ hubdle {
7272
}
7373
native()
7474

75-
wasmJs()
75+
wasm {
76+
js {
77+
browser()
78+
d8()
79+
nodejs()
80+
}
81+
wasi {
82+
nodejs()
83+
}
84+
}
7685

7786
// TODO: Check if it can be removed with Kotlin 2.0.0+
7887
kotlin {

kotlin-test-junit/api/android/kotlin-test-junit.api

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ public abstract interface annotation class com/javiersc/kotlin/test/IgnoreTvosX6
5858
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWasmJs : java/lang/annotation/Annotation {
5959
}
6060

61+
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWasmWasi : java/lang/annotation/Annotation {
62+
}
63+
6164
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWatchosArm32 : java/lang/annotation/Annotation {
6265
}
6366

kotlin-test-junit/api/jvm/kotlin-test-junit.api

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ public abstract interface annotation class com/javiersc/kotlin/test/IgnoreTvosX6
5858
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWasmJs : java/lang/annotation/Annotation {
5959
}
6060

61+
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWasmWasi : java/lang/annotation/Annotation {
62+
}
63+
6164
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWatchosArm32 : java/lang/annotation/Annotation {
6265
}
6366

kotlin-test-junit/build.gradle.kts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,16 @@ hubdle {
8585
mingw { //
8686
mingwX64()
8787
}
88-
wasmJs()
88+
wasm {
89+
js {
90+
browser()
91+
d8()
92+
nodejs()
93+
}
94+
wasi {
95+
nodejs()
96+
}
97+
}
8998
}
9099
}
91100
}

kotlin-test-junit5/api/kotlin-test-junit5.api

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ public abstract interface annotation class com/javiersc/kotlin/test/IgnoreTvosX6
5252
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWasmJs : java/lang/annotation/Annotation {
5353
}
5454

55+
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWasmWasi : java/lang/annotation/Annotation {
56+
}
57+
5558
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWatchosArm32 : java/lang/annotation/Annotation {
5659
}
5760

kotlin-test-junit5/build.gradle.kts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,16 @@ hubdle {
9191
mingw { //
9292
mingwX64()
9393
}
94-
95-
wasmJs()
94+
wasm {
95+
js {
96+
browser()
97+
d8()
98+
nodejs()
99+
}
100+
wasi {
101+
nodejs()
102+
}
103+
}
96104
}
97105
}
98106
}

kotlin-test-testng/api/kotlin-test-testng.api

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ public abstract interface annotation class com/javiersc/kotlin/test/IgnoreTvosX6
5252
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWasmJs : java/lang/annotation/Annotation {
5353
}
5454

55+
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWasmWasi : java/lang/annotation/Annotation {
56+
}
57+
5558
public abstract interface annotation class com/javiersc/kotlin/test/IgnoreWatchosArm32 : java/lang/annotation/Annotation {
5659
}
5760

kotlin-test-testng/build.gradle.kts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,16 @@ hubdle {
9292
mingwX64()
9393
}
9494

95-
wasmJs()
95+
wasm {
96+
js {
97+
browser()
98+
d8()
99+
nodejs()
100+
}
101+
wasi {
102+
nodejs()
103+
}
104+
}
96105
}
97106
}
98107
}

0 commit comments

Comments
 (0)