Skip to content

Commit 8baf359

Browse files
committed
Bump version strings.
1 parent 4fe7e5a commit 8baf359

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ name := "firrtl-interpreter"
5252

5353
organization := "edu.berkeley.cs"
5454

55-
version := "1.4.0-RC3"
55+
version := "1.4.0"
5656

5757
scalaVersion := "2.12.10"
5858

@@ -65,7 +65,7 @@ resolvers ++= Seq(
6565
)
6666

6767
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
68-
val defaultVersions = Map("firrtl" -> "1.4.0-RC3")
68+
val defaultVersions = Map("firrtl" -> "1.4.0")
6969

7070
// Ignore dependencies on Berkeley artifacts.
7171
// scala-steward:off

build.sc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule {
1313
}
1414

1515
trait CommonModule extends CrossUnRootedSbtModule with PublishModule {
16-
def publishVersion = "1.4.0-RC3"
16+
def publishVersion = "1.4.0"
1717

1818
def pomSettings = PomSettings(
1919
description = artifactName(),
@@ -69,7 +69,7 @@ object firrtlInterpreter extends Cross[FirrtlInterpreterModule](crossVersions: _
6969
}
7070

7171
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
72-
val defaultVersions = Map("firrtl" -> "1.4.0-RC3")
72+
val defaultVersions = Map("firrtl" -> "1.4.0")
7373

7474
def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
7575
val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))

0 commit comments

Comments
 (0)