-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove kotlinx.datetime.Instant
while preserving binary compatibility
#506
base: kotlin-2.1.20
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR updates the README documentation to reflect the removal of kotlinx.datetime.Instant in favor of kotlin.time.Instant while maintaining binary compatibility.
- Updated documentation examples to use kotlin.time.Instant and kotlin.time.Clock.
- Revised migration instructions and compatibility notes regarding the deprecation of kotlinx.datetime.Instant and kotlinx.datetime.Clock.
- Adjusted library version compatibility and clarified usage notes for different platforms.
Files not reviewed (19)
- core/api/kotlinx-datetime.api: Language not supported
- core/api/kotlinx-datetime.klib.api: Language not supported
- core/build.gradle.kts: Language not supported
- core/common/src/Clock.kt: Language not supported
- core/common/src/DeprecatedClock.kt: Language not supported
- core/common/src/TimeZone.kt: Language not supported
- core/common/src/format/DateTimeComponents.kt: Language not supported
- core/common/src/serializers/DeprecatedInstantSerializers.kt: Language not supported
- core/common/test/ClockTimeSourceTest.kt: Language not supported
- core/common/test/DeprecatedClockTimeSourceTest.kt: Language not supported
- core/common/test/InstantTest.kt: Language not supported
- core/common/test/LocalDateTest.kt: Language not supported
- core/common/test/LocalDateTimeTest.kt: Language not supported
- core/common/test/ReadmeTest.kt: Language not supported
- core/common/test/TimeZoneTest.kt: Language not supported
- core/common/test/format/DateTimeComponentsFormatTest.kt: Language not supported
- core/common/test/format/DateTimeComponentsTest.kt: Language not supported
- core/common/test/samples/ClockSamples.kt: Language not supported
- core/common/test/samples/DayOfWeekSamples.kt: Language not supported
@@ -12,9 +12,14 @@ public final class kotlinx/datetime/Clock$System : kotlinx/datetime/Clock { | |||
} | |||
|
|||
public final class kotlinx/datetime/ClockKt { | |||
public static final fun asClock (Lkotlin/time/TimeSource;Lkotlinx/datetime/Instant;)Lkotlinx/datetime/Clock; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to be missing in DeprecatedClock.kt
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is, but this is okay, since we never published a release with 73aad58
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not any longer! Sorry for missing the obvious, and thanks for picking up my slack.
Original implementation: #465.