Skip to content

Commit 1fc2681

Browse files
committed
AMEND
1 parent c527bac commit 1fc2681

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
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-full"))
253+
runtimeOnly(project(":kotlinx-datetime-timezones"))
254254
}
255255
}
256256

core/common/src/TimeZone.kt

Lines changed: 1 addition & 1 deletion
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-full.
59+
* to resolve this issue, please include a dependency on kotlinx-datetime-timezones.
6060
*/
6161
public fun of(zoneId: String): TimeZone
6262

serialization/build.gradle.kts

Lines changed: 1 addition & 1 deletion
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-full"))
113+
runtimeOnly(project(":kotlinx-datetime-timezones"))
114114
}
115115
}
116116

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
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-full"
20+
project(":timezones/full").name = "kotlinx-datetime-timezones"
2121
include(":serialization")
2222
project(":serialization").name = "kotlinx-datetime-serialization"
2323
include(":benchmarks")

0 commit comments

Comments
 (0)