summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack Koenig2020-12-17 08:58:14 -0800
committerGitHub2020-12-17 08:58:14 -0800
commit4f05b07b1547b876848c235f20983ea9c10b3c03 (patch)
treee05ee7c8b109d0931c45b1b761332c8fa3499897
parent25a417f86e47f7660318753065fea898535fbbd9 (diff)
Bump SNAPSHOT and SNAPSHOT dependencies (#1701)
-rw-r--r--build.sbt6
-rw-r--r--build.sc6
2 files changed, 6 insertions, 6 deletions
diff --git a/build.sbt b/build.sbt
index d1c81a68..634fe1c9 100644
--- a/build.sbt
+++ b/build.sbt
@@ -29,8 +29,8 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
}
val defaultVersions = Map(
- "firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.4-SNAPSHOT",
- "treadle" -> "edu.berkeley.cs" %% "treadle" % "1.3-SNAPSHOT"
+ "firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.5-SNAPSHOT",
+ "treadle" -> "edu.berkeley.cs" %% "treadle" % "1.5-SNAPSHOT"
)
lazy val commonSettings = Seq (
@@ -39,7 +39,7 @@ lazy val commonSettings = Seq (
Resolver.sonatypeRepo("releases")
),
organization := "edu.berkeley.cs",
- version := "3.4-SNAPSHOT",
+ version := "3.5-SNAPSHOT",
autoAPIMappings := true,
scalaVersion := "2.12.12",
crossScalaVersions := Seq("2.12.12", "2.11.12"),
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