File tree 2 files changed +9
-3
lines changed 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -124,8 +124,8 @@ object Build {
124
124
* scala-library.
125
125
*/
126
126
def stdlibVersion (implicit mode : Mode ): String = mode match {
127
- case NonBootstrapped => " 2.13.13 "
128
- case Bootstrapped => " 2.13.13 "
127
+ case NonBootstrapped => " 2.13.14 "
128
+ case Bootstrapped => " 2.13.14 "
129
129
}
130
130
131
131
val dottyOrganization = " org.scala-lang"
@@ -1141,7 +1141,7 @@ object Build {
1141
1141
.exclude(" org.eclipse.lsp4j" ," org.eclipse.lsp4j.jsonrpc" ),
1142
1142
" org.eclipse.lsp4j" % " org.eclipse.lsp4j" % " 0.20.1" ,
1143
1143
),
1144
- libraryDependencies += (" org.scalameta" % " mtags-shared_2.13.13 " % mtagsVersion % SourceDeps ),
1144
+ libraryDependencies += (" org.scalameta" % " mtags-shared_2.13.14 " % mtagsVersion % SourceDeps ),
1145
1145
ivyConfigurations += SourceDeps .hide,
1146
1146
transitiveClassifiers := Seq (" sources" ),
1147
1147
Compile / scalacOptions ++= Seq (" -Yexplicit-nulls" , " -Ysafe-init" ),
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ object MiMaFilters {
14
14
ProblemFilters .exclude[MissingFieldProblem ](" scala.runtime.stdLibPatches.language#experimental.relaxedExtensionImports" ),
15
15
ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$experimental$relaxedExtensionImports$" ),
16
16
// end of New experimental features in 3.3.X
17
+
18
+ // New in 2.13.13
19
+ " scala.collection.mutable.ArrayBuffer.resizeUp" , // private[mutable] def
20
+ // New in 2.13.14
21
+ " scala.util.Properties.consoleIsTerminal" , // private[scala] lazy val
22
+ // end of new in Scala 2
17
23
)
18
24
val TastyCore : Seq [ProblemFilter ] = Seq (
19
25
)
You can’t perform that action at this time.
0 commit comments