Skip to content

Commit bafdf55

Browse files
Update versions to 9.0.0
1 parent 2e5f7c6 commit bafdf55

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

src/main/kotlin/com/teamdev/jxbrowser/gradle/JxBrowserExtension.kt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ public open class JxBrowserExtension(
8787
* Returns a dependency notation for the `jxbrowser-kotlin`,
8888
* an artifact with the Kotlin API of the library.
8989
*
90-
* Kotlin API is only supported in JxBrowser 8.x.x.
90+
* Kotlin API is only supported in JxBrowser 8.x.x and newer.
9191
*/
9292
public val kotlin: Provider<String> = artifact("kotlin")
9393

9494
/**
9595
* Returns a dependency notation for the `jxbrowser-compose`,
9696
* an artifact with Compose integration.
9797
*
98-
* Compose is only supported in JxBrowser 8.x.x.
98+
* Compose is only supported in JxBrowser 8.x.x and newer.
9999
*/
100100
public val compose: Provider<String> = artifact("compose")
101101

@@ -120,6 +120,8 @@ public open class JxBrowserExtension(
120120
/**
121121
* Returns a dependency notation for the `jxbrowser-native-image`,
122122
* an artifact containing GraalVM Native Image reachability metadata.
123+
*
124+
* Native images are only supported in JxBrowser 9.x.x and newer.
123125
*/
124126
public val nativeImage: Provider<String> = artifact("native-image")
125127

@@ -234,9 +236,9 @@ public open class JxBrowserExtension(
234236
*/
235237
private val artifactNameToReleaseVersion =
236238
mapOf(
237-
"compose" to "8.0.0",
238-
"kotlin" to "8.0.0",
239-
"win64-arm" to "8.0.0",
239+
"compose" to "9.0.0",
240+
"kotlin" to "9.0.0",
241+
"win64-arm" to "9.0.0",
240242
"native-image" to "9.0.0",
241243
)
242244
}

0 commit comments

Comments
 (0)