Skip to content

Commit

Permalink
0.11.3-M3
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Dec 18, 2024
1 parent 69b6192 commit 1db10b9
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import mill.define.Command
import mill.resolve.SelectMode
import mill.resolve.Resolve
object Settings {
val version = "0.11.3-M2"
val version = "0.11.3-M3"
val pomOrg = "com.lihaoyi"
val githubOrg = "com-lihaoyi"
val githubRepo = "mill-moduledefs"
Expand All @@ -17,8 +17,9 @@ object Settings {

object Deps {
val scala2Versions = 0.to(15).map(v => "2.13." + v)
val scala3Versions = Seq("3.5.0", "3.5.2", "3.6.2")
val scalaAllVersions = Map(scala2Versions.last -> scala2Versions, scala3Versions.last -> scala3Versions)
val scala3Versions = Seq("3.5.0", "3.5.2")
val scala36Versions = Seq("3.6.2")
val scalaAllVersions = Map(scala2Versions.last -> scala2Versions, scala3Versions.last -> scala3Versions, scala36Versions.last -> scala36Versions)
def scalaCompiler(scalaVersion: String) =
if (scalaVersion.startsWith("3.")) ivy"org.scala-lang::scala3-compiler:${scalaVersion}"
else ivy"org.scala-lang:scala-compiler:${scalaVersion}"
Expand Down

0 comments on commit 1db10b9

Please sign in to comment.