Skip to content

Include missing Scala 3.6.* versions in Scala.listAll #3652

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
Apr 30, 2025
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
6 changes: 4 additions & 2 deletions project/deps.sc
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,17 @@ object Scala {
val max32 = 2
val max33 = patchVer(scala3Lts)
val max34 = 3
val max35 = patchVer(scala3Next)
val max35 = 2
val max36 = patchVer(scala3Next)
(8 until max212).map(i => s"2.12.$i") ++ Seq(scala212) ++
(0 until max213).map(i => s"2.13.$i") ++ Seq(scala213) ++
(0 to max30).map(i => s"3.0.$i") ++
(0 to max31).map(i => s"3.1.$i") ++
(0 to max32).map(i => s"3.2.$i") ++
(0 to max33).map(i => s"3.3.$i") ++
(0 to max34).map(i => s"3.4.$i") ++
(0 until max35).map(i => s"3.5.$i") ++ Seq(scala3Next)
(0 to max35).map(i => s"3.5.$i") ++
(0 until max36).map(i => s"3.6.$i") ++ Seq(scala3Next)
}

def maxAmmoniteScala212Version = scala212
Expand Down