From 52dfc4106cd21424cd5db2014d2afbbb65141df7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Marks?= Date: Wed, 26 Jan 2022 15:56:35 +0100 Subject: [PATCH] Change versions after the release of 3.1.1 --- project/Build.scala | 6 +++--- project/MiMaFilters.scala | 10 ---------- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/project/Build.scala b/project/Build.scala index 07bbf72e3785..000dfb8e2b6e 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -59,9 +59,9 @@ object DottyJSPlugin extends AutoPlugin { } object Build { - val referenceVersion = "3.1.1-RC2" + val referenceVersion = "3.1.2-RC1" - val baseVersion = "3.1.2-RC1" + val baseVersion = "3.1.3-RC1" // Versions used by the vscode extension to create a new project // This should be the latest published releases. @@ -77,7 +77,7 @@ object Build { * set to 3.1.3. If it is going to be 3.1.0, it must be set to the latest * 3.0.x release. */ - val previousDottyVersion = "3.1.0" + val previousDottyVersion = "3.1.1" object CompatMode { final val BinaryCompatible = 0 diff --git a/project/MiMaFilters.scala b/project/MiMaFilters.scala index ff1e7ae906e2..cac81eecc141 100644 --- a/project/MiMaFilters.scala +++ b/project/MiMaFilters.scala @@ -4,8 +4,6 @@ import com.typesafe.tools.mima.core._ object MiMaFilters { val Library: Seq[ProblemFilter] = Seq( // Experimental APIs that can be added in 3.2.0 - ProblemFilters.exclude[DirectMissingMethodProblem]("scala.runtime.Tuples.init"), - ProblemFilters.exclude[DirectMissingMethodProblem]("scala.runtime.Tuples.last"), ProblemFilters.exclude[DirectMissingMethodProblem]("scala.runtime.Tuples.append"), ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule#TypeReprMethods.substituteTypes"), ProblemFilters.exclude[DirectMissingMethodProblem]("scala.quoted.Quotes#reflectModule#TypeReprMethods.substituteTypes"), @@ -20,14 +18,6 @@ object MiMaFilters { ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule#CompilationInfoModule.XmacroSettings"), ProblemFilters.exclude[DirectMissingMethodProblem]("scala.quoted.Quotes#reflectModule#CompilationInfoModule.XmacroSettings"), - // Should have been added in 3.1.0 - // These are only allowed on imports and therefore should not be present in binaries emitted before - // this addition of these members and therefore should not cause any conflicts. - ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language.3.1-migration"), - ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language.3.1"), - ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$3$u002E1$"), - ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$3$u002E1$minusmigration$"), - // Private to the compiler - needed for forward binary compatibility ProblemFilters.exclude[MissingClassProblem]("scala.annotation.since") )