diff options
| -rw-r--r-- | build.sbt | 11 | ||||
| -rw-r--r-- | build.sc | 4 |
2 files changed, 6 insertions, 9 deletions
@@ -5,12 +5,9 @@ import com.typesafe.tools.mima.core._ enablePlugins(SiteScaladocPlugin) val defaultVersions = Map( - "firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.5-SNAPSHOT", - "treadle" -> "edu.berkeley.cs" %% "treadle" % "1.5-SNAPSHOT", - // chiseltest intentionally excluded so that release automation does not try to set its version - // The projects using chiseltest are not published, but SBT resolves dependencies for all projects - // when doing publishing and will not find a chiseltest release since chiseltest depends on - // chisel3 + "firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.5.5", + "treadle" -> "edu.berkeley.cs" %% "treadle" % "1.5.5", + "chiseltest" -> "edu.berkeley.cs" %% "chiseltest" % "0.5.5", ) lazy val commonSettings = Seq ( @@ -19,7 +16,7 @@ lazy val commonSettings = Seq ( Resolver.sonatypeRepo("releases") ), organization := "edu.berkeley.cs", - version := "3.5-SNAPSHOT", + version := "3.5.5", autoAPIMappings := true, scalaVersion := "2.12.17", crossScalaVersions := Seq("2.13.10", "2.12.17"), @@ -12,7 +12,7 @@ object chisel3 extends mill.Cross[chisel3CrossModule]("2.13.10", "2.12.17") // Please retain it. // Provide a managed dependency on X if -DXVersion="" is supplied on the command line. val defaultVersions = Map( - "firrtl" -> "1.5-SNAPSHOT" + "firrtl" -> "1.5.5" ) val testDefaultVersions = Map( @@ -49,7 +49,7 @@ trait CommonModule extends CrossSbtModule with PublishModule with ScalafmtModule ivy"com.lihaoyi::os-lib:0.8.0", ) ++ firrtlIvyDeps - def publishVersion = "3.5-SNAPSHOT" + def publishVersion = "3.5.5" // 2.12.10 -> Array("2", "12", "10") -> "12" -> 12 protected def majorVersion = crossScalaVersion.split('.')(1).toInt |
