Commit 0675e56 1 parent 2d9315f commit 0675e56 Copy full SHA for 0675e56
File tree 3 files changed +10
-2
lines changed
src/main/kotlin/de/itemis/mps/gradle/tasks
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 2
2
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
3
3
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
4
4
5
+ ## 1.25.1
6
+
7
+ ### Fixed
8
+
9
+ - ` Remigrate ` : change classpath construction to fix Kotlin library incompatibilities with latest MPS.
10
+
5
11
## 1.25.0
6
12
7
13
### Added
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ plugins {
24
24
id(" org.jetbrains.kotlinx.binary-compatibility-validator" ) version " 0.13.2"
25
25
}
26
26
27
- val baseVersion = " 1.25.0 "
27
+ val baseVersion = " 1.25.1 "
28
28
29
29
group = " de.itemis.mps"
30
30
Original file line number Diff line number Diff line change @@ -78,8 +78,10 @@ open class Remigrate @Inject constructor(
78
78
79
79
group = TaskGroups .MIGRATION
80
80
81
- classpath(backendConfig)
81
+ // Additional classpath goes before backend config in order to fix problem with Kotlin version mismatch of
82
+ // backend vs IDEA.
82
83
classpath(additionalClasspath)
84
+ classpath(backendConfig)
83
85
84
86
mainClass.set(" de.itemis.mps.gradle.remigrate.MainKt" )
85
87
}
You can’t perform that action at this time.
0 commit comments