@@ -7,12 +7,12 @@ object MiMaFilters {
7
7
8
8
val ForwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
9
9
// Additions that require a new minor version of the library
10
- Build .previousDottyVersion -> Seq (
10
+ Build .mimaPreviousDottyVersion -> Seq (
11
11
ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.annotation.experimental.this" ),
12
12
),
13
13
14
14
// Additions since last LTS
15
- Build .ltsDottyVersion -> Seq (
15
+ Build .mimaPreviousLTSDottyVersion -> Seq (
16
16
ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.quoted.Quotes#reflectModule.ValOrDefDefMethods" ),
17
17
ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.quoted.Quotes#reflectModule.ValOrDefDefTypeTest" ),
18
18
ProblemFilters .exclude[DirectMissingMethodProblem ](" scala.quoted.Quotes#reflectModule#defnModule.FunctionClass" ),
@@ -48,10 +48,10 @@ object MiMaFilters {
48
48
// Only exceptional cases should be added here.
49
49
50
50
// 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
52
52
53
53
// Breaking changes since last LTS
54
- Build .ltsDottyVersion -> Seq (
54
+ Build .mimaPreviousLTSDottyVersion -> Seq (
55
55
// Quotes is assumed to only be implemented by the compiler and on the same version of the library.
56
56
// It is exceptionally OK to break this compatibility. In these cases, there add new abstract methods that would
57
57
// potentially not be implemented by others. If some other library decides to implement these,
@@ -71,35 +71,35 @@ object MiMaFilters {
71
71
object TastyCore {
72
72
val ForwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
73
73
// Additions that require a new minor version of tasty core
74
- Build .previousDottyVersion -> Seq (
74
+ Build .mimaPreviousDottyVersion -> Seq (
75
75
ProblemFilters .exclude[DirectMissingMethodProblem ](" dotty.tools.tasty.TastyFormat.FLEXIBLEtype" )
76
76
),
77
77
78
78
// Additions since last LTS
79
- Build .ltsDottyVersion -> Seq (
79
+ Build .mimaPreviousLTSDottyVersion -> Seq (
80
80
)
81
81
)
82
82
83
83
val BackwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
84
84
// 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
86
86
)
87
87
}
88
88
89
89
object Interfaces {
90
90
val ForwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
91
91
// Additions that require a new minor version of interfaces
92
- Build .previousDottyVersion -> Seq (
92
+ Build .mimaPreviousDottyVersion -> Seq (
93
93
),
94
94
95
95
// Additions since last LTS
96
- Build .ltsDottyVersion -> Seq (
96
+ Build .mimaPreviousLTSDottyVersion -> Seq (
97
97
)
98
98
)
99
99
100
100
val BackwardsBreakingChanges : Map [String , Seq [ProblemFilter ]] = Map (
101
101
// 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
103
103
)
104
104
}
105
105
0 commit comments