Skip to content

Set development version to 3.4.0-RC1 #18284

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ object Build {

val referenceVersion = "3.3.1-RC4"

val baseVersion = "3.3.2-RC1" // temporarily, before branching out `3.4.0-RC1`
val baseVersion = "3.4.0-RC1"

// Versions used by the vscode extension to create a new project
// This should be the latest published releases.
Expand Down
14 changes: 0 additions & 14 deletions project/MiMaFilters.scala
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nicolasstucki: Should I change anything in StdlibBootstrappedBackwards or StdlibBootstrappedForward?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In theory, no. Those should only change when we update the stdlibBootstrappedVersion or change -Yscala2-stdlib. Let me know if something breaks there when updating the baseVersion.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

MiMa tests are passing, so I don't expect any problems.

Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,6 @@ import com.typesafe.tools.mima.core._

object MiMaFilters {
val Library: Seq[ProblemFilter] = Seq(
ProblemFilters.exclude[MissingClassProblem]("scala.annotation.unchecked.uncheckedCaptures"),

// Scala.js only: new runtime support class in 3.2.3; not available to users
ProblemFilters.exclude[MissingClassProblem]("scala.scalajs.runtime.AnonFunctionXXL"),

// New experimental features in 3.3.X
ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language#experimental.clauseInterleaving"),
ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$experimental$clauseInterleaving$"),
ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language#experimental.relaxedExtensionImports"),
ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$experimental$relaxedExtensionImports$"),
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.runtime.Tuples.reverse"),
ProblemFilters.exclude[MissingFieldProblem]("scala.Tuple.Helpers"),
ProblemFilters.exclude[MissingClassProblem]("scala.annotation.internal.CaptureChecked"),
// end of New experimental features in 3.3.X
)
val TastyCore: Seq[ProblemFilter] = Seq(
)
Expand Down