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

Add Scala 2.13.14 to bridgeScalaVersions #3166

Merged
merged 2 commits into from
May 23, 2024
Merged
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
5 changes: 4 additions & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ object Settings {
object Deps {

// The Scala version to use
// When updating, run "Publish Bridges" Github Actions for the new version
// and then add to it `bridgeScalaVersions`
Copy link
Member

Choose a reason for hiding this comment

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

I think we should auto-add all required verions (scalaVersion, workerScalaVersion212, probably scalaVersionForScoverageWorker1) to bridgeScalaVersions.

val scalaVersion = "2.13.14"
// Scoverage 1.x will not get releases for newer Scala versions
val scalaVersionForScoverageWorker1 = "2.13.8"
Expand Down Expand Up @@ -270,7 +272,8 @@ val bridgeScalaVersions = Seq(
"2.13.10",
"2.13.11",
"2.13.12",
"2.13.13"
"2.13.13",
"2.13.14"
)

// We limit the number of compiler bridges to compile and publish for local
Expand Down
Loading