Skip to content

Commit

Permalink
Downgrade Kotlin version to 1.8.22
Browse files Browse the repository at this point in the history
  • Loading branch information
cupertank committed Apr 22, 2024
1 parent d021715 commit e6ecc64
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile

group = "io.kinference.primitives"
//also change version in PluginConstants.kt
version = "0.1.26"
version = "0.1.26-kotlin18"

plugins {
kotlin("multiplatform") version "1.9.21" apply false
kotlin("multiplatform") version "1.8.22" apply false
`maven-publish` apply true
}

Expand Down Expand Up @@ -53,8 +53,8 @@ subprojects {
}

languageSettings {
apiVersion = "1.9"
languageVersion = "1.9"
apiVersion = "1.8"
languageVersion = "1.8"
}
}

Expand Down
2 changes: 1 addition & 1 deletion primitives-plugin/kotlin-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ group = rootProject.group
version = rootProject.version

plugins {
kotlin("plugin.serialization") version "1.9.21" apply true
kotlin("plugin.serialization") version "1.8.22" apply true
kotlin("kapt") apply true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package io.kinference.primitives.utils

object PluginConstants {
const val PLUGIN_ID = "io.kinference.primitives.kotlin-plugin"
const val VERSION = "0.1.26"
const val VERSION = "0.1.26-kotlin18"
const val GROUP_ID = "io.kinference.primitives"
const val KOTLIN_PLUGIN_ARTIFACT_ID = "kotlin-plugin"
const val ANNOTATIONS_ARTIFACT_ID = "primitives-annotations"
Expand Down

0 comments on commit e6ecc64

Please sign in to comment.