Skip to content

Commit fbfec15

Browse files
committed
AMEND
1 parent 8ea6136 commit fbfec15

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ kotlin {
489489
sourceSets {
490490
val wasmWasiMain by getting {
491491
dependencies {
492-
implementation("kotlinx-datetime-timezones", "2024a-spi.0.6.0-RC.2")
492+
implementation("kotlinx-datetime-zoneinfo", "2024a-spi.0.6.0-RC.2")
493493
}
494494
}
495495
}

core/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ kotlin {
250250
val wasmWasiTest by getting {
251251
dependsOn(pureKotlinTest)
252252
dependencies {
253-
runtimeOnly(project(":kotlinx-datetime-timezones"))
253+
runtimeOnly(project(":kotlinx-datetime-zoneinfo"))
254254
}
255255
}
256256

core/common/src/TimeZone.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public expect open class TimeZone {
5656
* is not found.
5757
*
5858
* @throws IllegalTimeZoneException within the Wasm WASI platform, which does not inherently support non-UTC time zones;
59-
* to resolve this issue, please include a dependency on kotlinx-datetime-timezones.
59+
* to resolve this issue, please include a dependency on kotlinx-datetime-zoneinfo.
6060
*/
6161
public fun of(zoneId: String): TimeZone
6262

serialization/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ kotlin {
110110
val wasmWasiMain by getting
111111
val wasmWasiTest by getting {
112112
dependencies {
113-
runtimeOnly(project(":kotlinx-datetime-timezones"))
113+
runtimeOnly(project(":kotlinx-datetime-zoneinfo"))
114114
}
115115
}
116116

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rootProject.name = "Kotlin-DateTime-library"
1717
include(":core")
1818
project(":core").name = "kotlinx-datetime"
1919
include(":timezones/full")
20-
project(":timezones/full").name = "kotlinx-datetime-timezones"
20+
project(":timezones/full").name = "kotlinx-datetime-zoneinfo"
2121
include(":serialization")
2222
project(":serialization").name = "kotlinx-datetime-serialization"
2323
include(":benchmarks")

0 commit comments

Comments
 (0)