File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -124,8 +124,8 @@ object Build {
124124 * scala-library.
125125 */
126126 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 "
129129 }
130130
131131 val dottyOrganization = " org.scala-lang"
@@ -1141,7 +1141,7 @@ object Build {
11411141 .exclude(" org.eclipse.lsp4j" ," org.eclipse.lsp4j.jsonrpc" ),
11421142 " org.eclipse.lsp4j" % " org.eclipse.lsp4j" % " 0.20.1" ,
11431143 ),
1144- libraryDependencies += (" org.scalameta" % " mtags-shared_2.13.13 " % mtagsVersion % SourceDeps ),
1144+ libraryDependencies += (" org.scalameta" % " mtags-shared_2.13.14 " % mtagsVersion % SourceDeps ),
11451145 ivyConfigurations += SourceDeps .hide,
11461146 transitiveClassifiers := Seq (" sources" ),
11471147 Compile / scalacOptions ++= Seq (" -Yexplicit-nulls" , " -Ysafe-init" ),
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ object MiMaFilters {
1414 ProblemFilters .exclude[MissingFieldProblem ](" scala.runtime.stdLibPatches.language#experimental.relaxedExtensionImports" ),
1515 ProblemFilters .exclude[MissingClassProblem ](" scala.runtime.stdLibPatches.language$experimental$relaxedExtensionImports$" ),
1616 // 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
1723 )
1824 val TastyCore : Seq [ProblemFilter ] = Seq (
1925 )
You can’t perform that action at this time.
0 commit comments