From b777b081b7e26dcc5fd8da35acdb0474536d8b79 Mon Sep 17 00:00:00 2001 From: Denis Zharkov Date: Wed, 13 Jul 2016 13:19:11 +0300 Subject: [PATCH] Increase SOURCE_STUB_VERSION and BINARY_STUB_VERSION in 1.1 on 50 Mostly because of type aliases and coroutines related changes The reason why not just +1 is to avoid clashes between 1.0.x and 1.1 in cases when version must be increased in both branches --- .../src/org/jetbrains/kotlin/psi/stubs/KotlinStubVersions.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/psi/stubs/KotlinStubVersions.kt b/compiler/frontend/src/org/jetbrains/kotlin/psi/stubs/KotlinStubVersions.kt index 1a4748c41d1..992400c7839 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/psi/stubs/KotlinStubVersions.kt +++ b/compiler/frontend/src/org/jetbrains/kotlin/psi/stubs/KotlinStubVersions.kt @@ -23,12 +23,12 @@ object KotlinStubVersions { // Though only kotlin declarations (no code in the bodies) are stubbed, please do increase this version // if you are not 100% sure it can be avoided. // Increasing this version will lead to reindexing of all kotlin source files on the first IDE startup with the new version. - const val SOURCE_STUB_VERSION = 68 + const val SOURCE_STUB_VERSION = 118 // Binary stub version should be increased if stub format (org.jetbrains.kotlin.psi.stubs.impl) is changed // or changes are made to the core stub building code (org.jetbrains.kotlin.idea.decompiler.stubBuilder). // Increasing this version will lead to reindexing of all binary files that are potentially kotlin binaries (including all class files). - private const val BINARY_STUB_VERSION = 2 + private const val BINARY_STUB_VERSION = 52 // Classfile stub version should be increased if changes are made to classfile stub building subsystem (org.jetbrains.kotlin.idea.decompiler.classFile) // Increasing this version will lead to reindexing of all classfiles.