File tree 4 files changed +8
-5
lines changed
presentation-compiler/test/dotty/tools/pc/tests/completion
4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -852,8 +852,8 @@ class CompletionSuite extends BaseCompletionSuite:
852
852
""" |dynamics scala.languageFeature
853
853
|existentials scala.languageFeature
854
854
|experimental scala.languageFeature
855
- |higherKinds scala.languageFeature
856
855
|implicitConversions scala.languageFeature
856
+ |postfixOps scala.languageFeature
857
857
|""" .stripMargin,
858
858
topLines = Some (5 )
859
859
)
Original file line number Diff line number Diff line change @@ -123,8 +123,8 @@ object Build {
123
123
* scala-library.
124
124
*/
125
125
def stdlibVersion (implicit mode : Mode ): String = mode match {
126
- case NonBootstrapped => " 2.13.10 "
127
- case Bootstrapped => " 2.13.10 "
126
+ case NonBootstrapped => " 2.13.12 "
127
+ case Bootstrapped => " 2.13.12 "
128
128
}
129
129
130
130
/** Version of the scala-library for which we will generate TASTy.
@@ -134,7 +134,7 @@ object Build {
134
134
* We can use nightly versions to tests the future compatibility in development.
135
135
* Nightly versions: https://scala-ci.typesafe.com/ui/native/scala-integration/org/scala-lang
136
136
*/
137
- val stdlibBootstrappedVersion = " 2.13.12-bin-364ee69 "
137
+ val stdlibBootstrappedVersion = " 2.13.12"
138
138
139
139
val dottyOrganization = " org.scala-lang"
140
140
val dottyGithubUrl = " https://github.com/lampepfl/dotty"
Original file line number Diff line number Diff line change @@ -90,6 +90,9 @@ object MiMaFilters {
90
90
" scala.collection.IterableOnceOps#Maximized.this" , // New in 2.13.11: private inner class
91
91
" scala.util.Properties.<clinit>" ,
92
92
" scala.util.Sorting.scala$util$Sorting$$mergeSort$default$5" ,
93
+ // New in 2.13.12 -- can be removed once scala/scala#10549 lands in 2.13.13
94
+ // and we take the upgrade here
95
+ " scala.collection.immutable.MapNodeRemoveAllSetNodeIterator.next" ,
93
96
).map(ProblemFilters .exclude[DirectMissingMethodProblem ])
94
97
}
95
98
)
You can’t perform that action at this time.
0 commit comments