summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorJack Koenig2020-12-17 08:58:14 -0800
committerGitHub2020-12-17 08:58:14 -0800
commit4f05b07b1547b876848c235f20983ea9c10b3c03 (patch)
treee05ee7c8b109d0931c45b1b761332c8fa3499897 /build.sc
parent25a417f86e47f7660318753065fea898535fbbd9 (diff)
Bump SNAPSHOT and SNAPSHOT dependencies (#1701)
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.sc b/build.sc
index 851cd1c7..6657f911 100644
--- a/build.sc
+++ b/build.sc
@@ -11,11 +11,11 @@ object chisel3 extends mill.Cross[chisel3CrossModule]("2.11.12", "2.12.12")
// Please retain it.
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
- "firrtl" -> "1.4-SNAPSHOT"
+ "firrtl" -> "1.5-SNAPSHOT"
)
val testDefaultVersions = Map(
- "treadle" -> "1.3-SNAPSHOT"
+ "treadle" -> "1.5-SNAPSHOT"
)
def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
@@ -46,7 +46,7 @@ trait CommonModule extends CrossSbtModule with PublishModule {
override def ivyDeps = super.ivyDeps() ++ firrtlIvyDeps
- def publishVersion = "3.4-SNAPSHOT"
+ def publishVersion = "3.5-SNAPSHOT"
// 2.12.10 -> Array("2", "12", "10") -> "12" -> 12
protected def majorVersion = crossScalaVersion.split('.')(1).toInt