diff --git a/.bunch b/.bunch index e45c9fe5147..1f7bc4541e2 100644 --- a/.bunch +++ b/.bunch @@ -5,4 +5,5 @@ 191_192 as35_191_192 as36_192 -as40 \ No newline at end of file +as40 +as41_201 \ No newline at end of file diff --git a/buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt b/buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt index 2536f82ef15..bbdd133a967 100644 --- a/buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt +++ b/buildSrc/src/main/kotlin/IdeCompatibilityDsl.kt @@ -51,7 +51,8 @@ enum class Ide(val platform: Platform) : CompatibilityPredicate { AS35(Platform.P183), AS36(Platform.P192), - AS40(Platform.P193); + AS40(Platform.P193), + AS41(Platform.P201); val kind = Kind.values().first { it.shortName == name.take(2) } val version = name.dropWhile { !it.isDigit() }.toInt()