Skip to content

Commit cde9565

Browse files
authored
Merge pull request #14356 from dotty-staging/after-3.1.1
Change versions after the release of 3.1.1
2 parents 5543ea8 + 52dfc41 commit cde9565

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ object DottyJSPlugin extends AutoPlugin {
5959
}
6060

6161
object Build {
62-
val referenceVersion = "3.1.1-RC2"
62+
val referenceVersion = "3.1.2-RC1"
6363

64-
val baseVersion = "3.1.2-RC1"
64+
val baseVersion = "3.1.3-RC1"
6565

6666
// Versions used by the vscode extension to create a new project
6767
// This should be the latest published releases.
@@ -77,7 +77,7 @@ object Build {
7777
* set to 3.1.3. If it is going to be 3.1.0, it must be set to the latest
7878
* 3.0.x release.
7979
*/
80-
val previousDottyVersion = "3.1.0"
80+
val previousDottyVersion = "3.1.1"
8181

8282
object CompatMode {
8383
final val BinaryCompatible = 0

project/MiMaFilters.scala

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import com.typesafe.tools.mima.core._
44
object MiMaFilters {
55
val Library: Seq[ProblemFilter] = Seq(
66
// Experimental APIs that can be added in 3.2.0
7-
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.runtime.Tuples.init"),
8-
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.runtime.Tuples.last"),
97
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.runtime.Tuples.append"),
108
ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule#TypeReprMethods.substituteTypes"),
119
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.quoted.Quotes#reflectModule#TypeReprMethods.substituteTypes"),
@@ -20,14 +18,6 @@ object MiMaFilters {
2018
ProblemFilters.exclude[ReversedMissingMethodProblem]("scala.quoted.Quotes#reflectModule#CompilationInfoModule.XmacroSettings"),
2119
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.quoted.Quotes#reflectModule#CompilationInfoModule.XmacroSettings"),
2220

23-
// Should have been added in 3.1.0
24-
// These are only allowed on imports and therefore should not be present in binaries emitted before
25-
// this addition of these members and therefore should not cause any conflicts.
26-
ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language.3.1-migration"),
27-
ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language.3.1"),
28-
ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$3$u002E1$"),
29-
ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$3$u002E1$minusmigration$"),
30-
3121
// Private to the compiler - needed for forward binary compatibility
3222
ProblemFilters.exclude[MissingClassProblem]("scala.annotation.since")
3323
)

0 commit comments

Comments
 (0)