Skip to content

Commit 5ae6b25

Browse files
committed
Update kotlin wrappers to pre.839
1 parent 371ac23 commit 5ae6b25

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

gradle/build-logic/settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020-2023 Björn Kautler
2+
* Copyright 2020-2025 Björn Kautler
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -87,7 +87,7 @@ dependencyResolutionManagement {
8787
}
8888

8989
val kotlinWrappers by registering {
90-
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:0.0.1-pre.819")
90+
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:0.0.1-pre.839")
9191
}
9292
}
9393
}

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ build-inject = "1"
2424
build-kotlinx-serialization = "1.5.0"
2525
build-node = "20.11.0"
2626
build-snakeyaml = "2.0"
27-
kotlin = "2.0.20"
27+
kotlin = "2.0.21"
2828
kotlinx-coroutines = "1.6.4"
2929
ktor = "3.0.0"
3030
workflows-kotlin = "2.1.10"

kotlin-js-store/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -612,10 +612,10 @@
612612
dependencies:
613613
"@types/node" "*"
614614

615-
"@vercel/ncc@^0.38.2":
616-
version "0.38.2"
617-
resolved "https://registry.yarnpkg.com/@vercel/ncc/-/ncc-0.38.2.tgz#d35c3a74c671699ccf316f74bf0ecab6b60e312b"
618-
integrity sha512-3yel3jaxUg9pHBv4+KeC9qlbdZPug+UMtUOlhvpDYCMSgcNSrS2Hv1LoqMsOV7hf2lYscx+BESfJOIla1WsmMQ==
615+
"@vercel/ncc@^0.38.3":
616+
version "0.38.3"
617+
resolved "https://registry.yarnpkg.com/@vercel/ncc/-/ncc-0.38.3.tgz#5475eeee3ac0f1a439f237596911525a490a88b5"
618+
integrity sha512-rnK6hJBS6mwc+Bkab+PGPs9OiS0i/3kdTO+CkI8V0/VrW3vmz7O2Pxjw/owOlmo6PKEIxRSeZKv/kuL9itnpYA==
619619

620620
[email protected], abort-controller@^3.0.0:
621621
version "3.0.0"

ncc-packer/src/jsMain/kotlin/net/kautler/nccpacker/NccPacker.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020-2024 Björn Kautler
2+
* Copyright 2020-2025 Björn Kautler
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -48,7 +48,7 @@ suspend fun main(vararg args: String) {
4848
mkdir(path.dirname(assetFilePath), MakeDirectoryOptions(recursive = true))
4949
writeFile(
5050
assetFilePath,
51-
asset.source.upcast<ArrayBufferView>(),
51+
asset.source.upcast<ArrayBufferView<*>>(),
5252
WriteFileAsyncOptions(mode = asset.permissions)
5353
)
5454
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ dependencyResolutionManagement {
102102

103103
versionCatalogs {
104104
val kotlinWrappers by registering {
105-
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:0.0.1-pre.819")
105+
from("org.jetbrains.kotlin-wrappers:kotlin-wrappers-catalog:0.0.1-pre.839")
106106
}
107107
}
108108
}

0 commit comments

Comments
 (0)