Skip to content

Commit

Permalink
Update kotlinx-metadata version to be compatible with upcoming Kotlin…
Browse files Browse the repository at this point in the history
… 1.6.0 (#66)
  • Loading branch information
qwwdfsad authored Aug 17, 2021
1 parent 18a74c4 commit 9ce55a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
kotlin("jvm")
`java-gradle-plugin`
id("com.gradle.plugin-publish") apply false
`signing`
signing
`maven-publish`
}

Expand Down Expand Up @@ -38,7 +38,7 @@ tasks.check { dependsOn(tasks["functionalTest"]) }

dependencies {
implementation(gradleApi())
implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.2.0")
implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.3.0")
implementation("org.ow2.asm:asm:9.0")
implementation("org.ow2.asm:asm-tree:9.0")
implementation("com.googlecode.java-diff-utils:diffutils:1.3.0")
Expand Down
1 change: 0 additions & 1 deletion src/main/kotlin/api/KotlinMetadataVisibilities.kt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ val ClassNode.kotlinMetadata: KotlinClassMetadata?
KotlinClassHeader(
kind = get("k") as Int?,
metadataVersion = (get("mv") as List<Int>?)?.toIntArray(),
bytecodeVersion = (get("bv") as List<Int>?)?.toIntArray(),
data1 = (get("d1") as List<String>?)?.toTypedArray(),
data2 = (get("d2") as List<String>?)?.toTypedArray(),
extraString = get("xs") as String?,
Expand Down

0 comments on commit 9ce55a7

Please sign in to comment.