@@ -7,12 +7,12 @@ object MiMaFilters {
77
88 val ForwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
99 // Additions that require a new minor version of the library
10- Build .previousDottyVersion -> Seq (
10+ Build .mimaPreviousDottyVersion -> Seq (
1111 ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.annotation.experimental.this" ),
1212 ),
1313
1414 // Additions since last LTS
15- Build .ltsDottyVersion -> Seq (
15+ Build .mimaPreviousLTSDottyVersion -> Seq (
1616 ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.quoted.Quotes#reflectModule.ValOrDefDefMethods" ),
1717 ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.quoted.Quotes#reflectModule.ValOrDefDefTypeTest" ),
1818 ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#defnModule.FunctionClass" ),
@@ -48,10 +48,10 @@ object MiMaFilters {
4848 // Only exceptional cases should be added here.
4949
5050 // Breaking changes since last reference version
51- Build .previousDottyVersion -> Seq .empty, // We should never break backwards compatibility
51+ Build .mimaPreviousDottyVersion -> Seq .empty, // We should never break backwards compatibility
5252
5353 // Breaking changes since last LTS
54- Build .ltsDottyVersion -> Seq (
54+ Build .mimaPreviousLTSDottyVersion -> Seq (
5555 // Quotes is assumed to only be implemented by the compiler and on the same version of the library.
5656 // It is exceptionally OK to break this compatibility. In these cases, there add new abstract methods that would
5757 // potentially not be implemented by others. If some other library decides to implement these,
@@ -71,35 +71,35 @@ object MiMaFilters {
7171 object TastyCore {
7272 val ForwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
7373 // Additions that require a new minor version of tasty core
74- Build .previousDottyVersion -> Seq (
74+ Build .mimaPreviousDottyVersion -> Seq (
7575 ProblemFilters .exclude[DirectMissingMethodProblem ](" dotty.tools.tasty.TastyFormat.FLEXIBLEtype" )
7676 ),
7777
7878 // Additions since last LTS
79- Build .ltsDottyVersion -> Seq (
79+ Build .mimaPreviousLTSDottyVersion -> Seq (
8080 )
8181 )
8282
8383 val BackwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
8484 // Breaking changes since last LTS
85- Build .ltsDottyVersion -> Seq .empty // We should never break backwards compatibility
85+ Build .mimaPreviousLTSDottyVersion -> Seq .empty // We should never break backwards compatibility
8686 )
8787 }
8888
8989 object Interfaces {
9090 val ForwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
9191 // Additions that require a new minor version of interfaces
92- Build .previousDottyVersion -> Seq (
92+ Build .mimaPreviousDottyVersion -> Seq (
9393 ),
9494
9595 // Additions since last LTS
96- Build .ltsDottyVersion -> Seq (
96+ Build .mimaPreviousLTSDottyVersion -> Seq (
9797 )
9898 )
9999
100100 val BackwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
101101 // Breaking changes since last LTS
102- Build .ltsDottyVersion -> Seq .empty // We should never break backwards compatibility
102+ Build .mimaPreviousLTSDottyVersion -> Seq .empty // We should never break backwards compatibility
103103 )
104104 }
105105
0 commit comments