aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Lawson2020-06-02 12:04:03 -0700
committerGitHub2020-06-02 12:04:03 -0700
commit636f804ace1fff7e6c0454ef6e79e0fd3add98b7 (patch)
tree6fb861c277f8acd0a2e5d2aba76bb3e94daf9726
parent0845fcdb0c25e73c3299fc0463790f57a2219a0c (diff)
Bump SNAPSHOT version. (#1652)
-rw-r--r--build.sbt2
-rw-r--r--build.sc2
2 files changed, 2 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 3fc859a5..56230ba2 100644
--- a/build.sbt
+++ b/build.sbt
@@ -32,7 +32,7 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
lazy val commonSettings = Seq(
organization := "edu.berkeley.cs",
name := "firrtl",
- version := "1.3-SNAPSHOT",
+ version := "1.4-SNAPSHOT",
scalaVersion := "2.12.11",
crossScalaVersions := Seq("2.12.11", "2.11.12"),
addCompilerPlugin(scalafixSemanticdb),
diff --git a/build.sc b/build.sc
index 42380f96..073d896b 100644
--- a/build.sc
+++ b/build.sc
@@ -16,7 +16,7 @@ class firrtlCrossModule(crossVersion: String) extends ScalaModule with SbtModule
// 2.12.11 -> Array("2", "12", "10") -> "12" -> 12
private def majorVersion = crossVersion.split('.')(1).toInt
- def publishVersion = "1.3-SNAPSHOT"
+ def publishVersion = "1.4-SNAPSHOT"
def antlr4Version = "4.7.1"