summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorJim Lawson2020-06-02 16:41:32 -0700
committerGitHub2020-06-02 16:41:32 -0700
commitf47d812d23abd32be470edc9e0d5a5cecb23bf4b (patch)
treef58e2b5236044e907cf16ac8a57df230b0fa9574 /build.sc
parentd65013c43f0332e04dd47ce068837b52fbe14cc8 (diff)
Bump SNAPSHOT version. (#1458)
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sc b/build.sc
index 91ea968d..88255d62 100644
--- a/build.sc
+++ b/build.sc
@@ -11,7 +11,7 @@ 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.
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
-val defaultVersions = Map("firrtl" -> "1.3-SNAPSHOT")
+val defaultVersions = Map("firrtl" -> "1.4-SNAPSHOT")
def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))
@@ -22,7 +22,7 @@ def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
trait CommonModule extends ScalaModule with SbtModule with PublishModule {
def firrtlModule: Option[PublishModule]
- def publishVersion = "3.3-SNAPSHOT"
+ def publishVersion = "3.4-SNAPSHOT"
// 2.12.11 -> Array("2", "12", "10") -> "12" -> 12
protected def majorVersion = crossVersion.split('.')(1).toInt