Skip to content
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

Update Kotlin/Native for 1.9.0 #3734

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/topics/components-stability.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ We make sure to document precisely which subcomponents are not stable. We also d
| Kotlin/JVM (IR-based) | Stable | 1.5 | |
| Kotlin/JS (IR-based) | Stable | 1.8 | |
| Kotlin/Native Runtime | Beta | 1.3 | |
| Kotlin/Native memory manager | Beta | 1.7.20 | Same stability level as Kotlin/Native |
| Kotlin/Native memory manager | Beta | 1.7.20 | |
| klib binaries | Beta | 1.9.0 | |
| Kotlin Multiplatform | Beta | 1.7.20 | |
| Kotlin/Native interop with C and Objective C | Beta | 1.3 | |
Expand Down
7 changes: 3 additions & 4 deletions docs/topics/whatsnew19.md
Original file line number Diff line number Diff line change
Expand Up @@ -432,10 +432,9 @@ kotlin {
### Compiler option for C interop implicit integer conversions
As we continue to work towards the stabilization of Kotlin/Native, we have introduced a compiler option for C interop
that allows you to use implicit integer conversions. Previously it wasn't necessary to configure a compiler option to
use implicit integer conversions. After careful consideration, we've introduced this compiler option to prevent
unintentional use as this feature still has room for improvement and our aim is to have an API of the highest quality.
We have introduced a compiler option for C interop that allows you to use implicit integer conversions. After careful
consideration, we've introduced this compiler option to prevent unintentional use as this feature still has room for
improvement and our aim is to have an API of the highest quality.
In this code sample an implicit integer conversion allows `options = 0` even though [`options`](https://developer.apple.com/documentation/foundation/nscalendar/options)
has unsigned type `UInt` and `0` is signed.
Expand Down
Loading