File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff 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 */
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments