File tree 2 files changed +7
-3
lines changed 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ object Build {
126
126
* scala-library.
127
127
*/
128
128
def stdlibVersion (implicit mode : Mode ): String = mode match {
129
- case NonBootstrapped => " 2.13.13 "
130
- case Bootstrapped => " 2.13.13 "
129
+ case NonBootstrapped => " 2.13.14 "
130
+ case Bootstrapped => " 2.13.14 "
131
131
}
132
132
133
133
/** Version of the scala-library for which we will generate TASTy.
@@ -137,7 +137,7 @@ object Build {
137
137
* We can use nightly versions to tests the future compatibility in development.
138
138
* Nightly versions: https://scala-ci.typesafe.com/ui/native/scala-integration/org/scala-lang
139
139
*/
140
- val stdlibBootstrappedVersion = " 2.13.13 "
140
+ val stdlibBootstrappedVersion = " 2.13.14 "
141
141
142
142
val dottyOrganization = " org.scala-lang"
143
143
val dottyGithubUrl = " https://github.com/lampepfl/dotty"
Original file line number Diff line number Diff line change @@ -172,6 +172,10 @@ object Scala2LibraryBootstrappedMiMaFilters {
172
172
" scala.collection.mutable.LinkedHashSet.defaultLoadFactor" , // private[collection] final def
173
173
" scala.collection.mutable.LinkedHashSet.defaultinitialSize" , // private[collection] final def
174
174
" scala.collection.mutable.OpenHashMap.nextPositivePowerOfTwo" , // private[mutable] def
175
+ // New in 2.13.13
176
+ " scala.collection.mutable.ArrayBuffer.resizeUp" , // private[mutable] def
177
+ // New in 2.13.14
178
+ " scala.util.Properties.consoleIsTerminal" , // private[scala] lazy val
175
179
).map(ProblemFilters .exclude[DirectMissingMethodProblem ]) ++
176
180
Seq ( // MissingFieldProblem: static field ... in object ... does not have a correspondent in other version
177
181
" scala.Array.UnapplySeqWrapper" ,
You can’t perform that action at this time.
0 commit comments