Skip to content

Commit 0675e56

Browse files
1.25.1: Remigrate: fix Kotlin incompatibility with latest MPS
1 parent 2d9315f commit 0675e56

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
33
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## 1.25.1
6+
7+
### Fixed
8+
9+
- `Remigrate`: change classpath construction to fix Kotlin library incompatibilities with latest MPS.
10+
511
## 1.25.0
612

713
### Added

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ plugins {
2424
id("org.jetbrains.kotlinx.binary-compatibility-validator") version "0.13.2"
2525
}
2626

27-
val baseVersion = "1.25.0"
27+
val baseVersion = "1.25.1"
2828

2929
group = "de.itemis.mps"
3030

src/main/kotlin/de/itemis/mps/gradle/tasks/Remigrate.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,10 @@ open class Remigrate @Inject constructor(
7878

7979
group = TaskGroups.MIGRATION
8080

81-
classpath(backendConfig)
81+
// Additional classpath goes before backend config in order to fix problem with Kotlin version mismatch of
82+
// backend vs IDEA.
8283
classpath(additionalClasspath)
84+
classpath(backendConfig)
8385

8486
mainClass.set("de.itemis.mps.gradle.remigrate.MainKt")
8587
}

0 commit comments

Comments
 (0)