Skip to content

Commit

Permalink
Update BCV library version in reference public api test and update dumps
Browse files Browse the repository at this point in the history
There were two problems in BCV fixed:
- Kotlin/binary-compatibility-validator#36
- Kotlin/binary-compatibility-validator#58

Therefore some methods with default values and properties that
mistakenly wasn't included in the dump, now have appeared in it.
  • Loading branch information
ilya-g committed Nov 17, 2022
1 parent 123caee commit fc9cf5c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
9 changes: 1 addition & 8 deletions libraries/tools/binary-compatibility-validator/build.gradle
Expand Up @@ -6,7 +6,7 @@ configurations {
}

dependencies {
api("org.jetbrains.kotlinx:binary-compatibility-validator:0.9.0")
api("org.jetbrains.kotlinx:binary-compatibility-validator:0.12.0")
api("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.5.0")

testApi project(':kotlin-test:kotlin-test-junit')
Expand All @@ -20,13 +20,6 @@ dependencies {
testArtifacts project(':kotlin-tooling-core')
testArtifacts project(':kotlin-gradle-plugin-api')
testArtifacts project(':kotlin-gradle-plugin-annotations')

testCompileOnly("org.ow2.asm:asm-tree:9.0") {
because(
"Necessary to compile copied 'filterOutAnnotated' implementation. " +
"Can be removed after https://github.com/Kotlin/binary-compatibility-validator/pull/75"
)
}
}

pill {
Expand Down
Expand Up @@ -526,6 +526,7 @@ public final class kotlin/UnsignedKt {
}

public final class kotlin/_Assertions {
public static final field ENABLED Z
public static final field INSTANCE Lkotlin/_Assertions;
}

Expand Down Expand Up @@ -5948,6 +5949,7 @@ public final class kotlin/time/Duration : java/lang/Comparable {
public static fun equals-impl (JLjava/lang/Object;)Z
public static final fun equals-impl0 (JJ)Z
public static final fun getAbsoluteValue-UwyO8pc (J)J
public static final fun getHoursComponent-impl (J)I
public static final fun getInDays-impl (J)D
public static final fun getInHours-impl (J)D
public static final fun getInMicroseconds-impl (J)D
Expand All @@ -5962,6 +5964,9 @@ public final class kotlin/time/Duration : java/lang/Comparable {
public static final fun getInWholeMinutes-impl (J)J
public static final fun getInWholeNanoseconds-impl (J)J
public static final fun getInWholeSeconds-impl (J)J
public static final fun getMinutesComponent-impl (J)I
public static final fun getNanosecondsComponent-impl (J)I
public static final fun getSecondsComponent-impl (J)I
public fun hashCode ()I
public static fun hashCode-impl (J)I
public static final fun isFinite-impl (J)Z
Expand Down
Expand Up @@ -28,6 +28,9 @@ public final class org/jetbrains/kotlin/tooling/core/ClosureKt {
public static final fun createResultSet (I)Ljava/util/Set;
public static final fun createResultSet (Ljava/lang/Iterable;I)Ljava/util/Set;
public static final fun createResultSet (Ljava/lang/Object;I)Ljava/util/Set;
public static synthetic fun createResultSet$default (IILjava/lang/Object;)Ljava/util/Set;
public static synthetic fun createResultSet$default (Ljava/lang/Iterable;IILjava/lang/Object;)Ljava/util/Set;
public static synthetic fun createResultSet$default (Ljava/lang/Object;IILjava/lang/Object;)Ljava/util/Set;
}

public abstract interface class org/jetbrains/kotlin/tooling/core/Extras : java/util/Collection, kotlin/jvm/internal/markers/KMappedMarker {
Expand All @@ -52,6 +55,7 @@ public final class org/jetbrains/kotlin/tooling/core/Extras$Entry : java/io/Seri
public final class org/jetbrains/kotlin/tooling/core/Extras$Key : java/io/Serializable {
public static final field Companion Lorg/jetbrains/kotlin/tooling/core/Extras$Key$Companion;
public fun <init> (Lorg/jetbrains/kotlin/tooling/core/Extras$Type;Ljava/lang/String;)V
public synthetic fun <init> (Lorg/jetbrains/kotlin/tooling/core/Extras$Type;Ljava/lang/String;ILkotlin/jvm/internal/DefaultConstructorMarker;)V
public fun equals (Ljava/lang/Object;)Z
public final fun getName ()Ljava/lang/String;
public final fun getStableString ()Ljava/lang/String;
Expand Down

0 comments on commit fc9cf5c

Please sign in to comment.