Skip to content
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

Scala 2.13.12 (was 2.13.10) #19454

Merged
merged 1 commit into from
Jan 30, 2024
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 community-build/community-projects/stdLib213
Submodule stdLib213 updated 489 files
Original file line number Diff line number Diff line change
Expand Up @@ -852,8 +852,8 @@ class CompletionSuite extends BaseCompletionSuite:
"""|dynamics scala.languageFeature
|existentials scala.languageFeature
|experimental scala.languageFeature
|higherKinds scala.languageFeature
|implicitConversions scala.languageFeature
|postfixOps scala.languageFeature
|""".stripMargin,
Comment on lines -855 to 857
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we know why did it change?

Copy link
Contributor

Choose a reason for hiding this comment

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

Might be related to #19468

topLines = Some(5)
)
Expand Down
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ object Build {
* scala-library.
*/
def stdlibVersion(implicit mode: Mode): String = mode match {
case NonBootstrapped => "2.13.10"
case Bootstrapped => "2.13.10"
case NonBootstrapped => "2.13.12"
case Bootstrapped => "2.13.12"
}

val dottyOrganization = "org.scala-lang"
Expand Down
4 changes: 4 additions & 0 deletions project/MiMaFilters.scala
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ object MiMaFilters {
ProblemFilters.exclude[MissingFieldProblem]("scala.runtime.stdLibPatches.language#experimental.relaxedExtensionImports"),
ProblemFilters.exclude[MissingClassProblem]("scala.runtime.stdLibPatches.language$experimental$relaxedExtensionImports$"),
// end of New experimental features in 3.3.X

// New in 2.13.12 -- can be removed once scala/scala#10549 lands in 2.13.13
// and we take the upgrade here
ProblemFilters.exclude[DirectMissingMethodProblem]("scala.collection.immutable.MapNodeRemoveAllSetNodeIterator.next"),
)
val TastyCore: Seq[ProblemFilter] = Seq(
)
Expand Down
2 changes: 1 addition & 1 deletion project/scripts/cmdScaladocTests
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dist/target/pack/bin/scaladoc \
"-snippet-compiler:scaladoc-testcases/docs=compile" \
"-comment-syntax:scaladoc-testcases/src/example/comment-md=markdown,scaladoc-testcases/src/example/comment-wiki=wiki" \
-siteroot scaladoc-testcases/docs \
-project-footer "Copyright (c) 2002-2023, LAMP/EPFL" \
-project-footer "Copyright (c) 2002-2024, LAMP/EPFL" \
-default-template static-site-main \
-author -groups -revision main -project-version "${DOTTY_BOOTSTRAPPED_VERSION}" \
"-quick-links:Learn::https://docs.scala-lang.org/,Install::https://www.scala-lang.org/download/,Playground::https://scastie.scala-lang.org,Find A Library::https://index.scala-lang.org,Community::https://www.scala-lang.org/community/,Blog::https://www.scala-lang.org/blog/," \
Expand Down
Loading