Skip to content

Commit 05d0798

Browse files
committed
drop MiMa against LTS. It was never checked...
1 parent 3eb2321 commit 05d0798

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

project/Build.scala

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,6 @@ object Build {
133133
*/
134134
val mimaPreviousDottyVersion = "3.8.0-RC1" // temporary until 3.8.0 is released
135135

136-
/** LTS version against which we check binary compatibility.
137-
*
138-
* This must be the earliest published release in the LTS versioning line.
139-
* For example, if the latest LTS release is be 3.3.4, then this must be
140-
* set to 3.3.0.
141-
*/
142-
val mimaPreviousLTSDottyVersion = "3.3.0"
143-
144136
/** Version of Scala CLI to download */
145137
val scalaCliLauncherVersion = "1.10.1"
146138
/** Version of Coursier to download for initializing the local maven repo of Scala command */

project/MiMaFilters.scala

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -504,16 +504,11 @@ object MiMaFilters {
504504
// No .class files generated in the artifacts, only `scala.scalajs.*` files might be present
505505
ProblemFilters.exclude[MissingClassProblem]("scala.*"),
506506
),
507-
Build.mimaPreviousLTSDottyVersion -> Seq(
508-
// No .class files generated in the artifacts, only `scala.scalajs.*` files might be present
509-
ProblemFilters.exclude[MissingClassProblem]("scala.*"),
510-
),
511507
)
512508

513509
val BackwardsBreakingChanges: Map[String, Seq[ProblemFilter]] = Map(
514510
// We should never break backwards compatibility
515511
Build.mimaPreviousDottyVersion -> Seq.empty,
516-
Build.mimaPreviousLTSDottyVersion -> Seq.empty,
517512
)
518513
}
519514

0 commit comments

Comments
 (0)