summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorJack Koenig2020-03-26 14:18:21 -0700
committerGitHub2020-03-26 21:18:21 +0000
commite88f33e0aa02b093eaaef496b63f61a5c45148d6 (patch)
tree1ae32b6a8adee7d4156ade483ff217ad211d50cb /build.sc
parent81845909248aaceef427e73924211931e0dc60dc (diff)
Bump to Scala 2.12.11 (#1389)
Co-authored-by: Jim Lawson <ucbjrl@berkeley.edu> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc10
1 files changed, 5 insertions, 5 deletions
diff --git a/build.sc b/build.sc
index 821d71e0..72058b0f 100644
--- a/build.sc
+++ b/build.sc
@@ -6,7 +6,7 @@ import coursier.maven.MavenRepository
import $ivy.`com.lihaoyi::mill-contrib-buildinfo:$MILL_VERSION`
import mill.contrib.buildinfo.BuildInfo
-object chisel3 extends mill.Cross[chisel3CrossModule]("2.11.12", "2.12.10")
+object chisel3 extends mill.Cross[chisel3CrossModule]("2.11.12", "2.12.11")
// The following stanza is searched for and used when preparing releases.
// Please retain it.
@@ -24,7 +24,7 @@ trait CommonModule extends ScalaModule with SbtModule with PublishModule {
def publishVersion = "3.3-SNAPSHOT"
- // 2.12.10 -> Array("2", "12", "10") -> "12" -> 12
+ // 2.12.11 -> Array("2", "12", "10") -> "12" -> 12
protected def majorVersion = crossVersion.split('.')(1).toInt
def crossVersion: String
@@ -59,7 +59,7 @@ trait CommonModule extends ScalaModule with SbtModule with PublishModule {
override def javacOptions = super.javacOptions() ++ javacCrossOptions
- private val macroParadise = ivy"org.scalamacros:::paradise:2.1.0"
+ private val macroParadise = ivy"org.scalamacros:::paradise:2.1.1"
override def compileIvyDeps = Agg(macroParadise)
@@ -79,7 +79,7 @@ trait CommonModule extends ScalaModule with SbtModule with PublishModule {
class chisel3CrossModule(crossVersionValue: String) extends CommonModule with PublishModule with BuildInfo { m =>
// different scala version shares same sources
- // mill use foo/2.11.12 foo/2.12.10 as millSourcePath by default
+ // mill use foo/2.11.12 foo/2.12.11 as millSourcePath by default
override def millSourcePath = super.millSourcePath / os.up / os.up
def crossVersion = crossVersionValue
@@ -105,7 +105,7 @@ class chisel3CrossModule(crossVersionValue: String) extends CommonModule with Pu
def testFrameworks = Seq("org.scalatest.tools.Framework")
// a sbt-like testOnly command.
- // for example, mill -i "chisel3[2.12.10].test.testOnly" "chiselTests.BitwiseOpsSpec"
+ // for example, mill -i "chisel3[2.12.11].test.testOnly" "chiselTests.BitwiseOpsSpec"
def testOnly(args: String*) = T.command {
super.runMain("org.scalatest.run", args: _*)
}