-
Notifications
You must be signed in to change notification settings - Fork 252
build(deps): bump org.jetbrains.kotlin:kotlin-gradle-plugin in / #909
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ repositories { | |
| } | ||
|
|
||
| dependencies { | ||
| implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20") | ||
| implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.4.10") | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The Useful? React with 👍 / 👎. |
||
| implementation("com.vanniktech:gradle-maven-publish-plugin:0.28.0") | ||
|
|
||
| testImplementation(kotlin("test")) | ||
|
|
||
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.
Kotlin 2.4.10 no longer supports the Kotlin 1.8 language/API level, but the shared
openai.kotlinconvention still sets bothlanguageVersionandapiVersiontoKOTLIN_1_8inbuildSrc/src/main/kotlin/openai.kotlin.gradle.kts. Consequently, compiling any SDK module that applies this convention fails with an unsupported language-version error; either retain a compatible compiler or update and validate the language/API compatibility settings as part of this upgrade.Useful? React with 👍 / 👎.