Skip to content

Commit

Permalink
Bump version strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
chick committed Feb 1, 2021
1 parent 7d6997d commit 1ca4bc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ name := "firrtl-interpreter"

organization := "edu.berkeley.cs"

version := "1.4.1"
version := "1.4.2"

scalaVersion := "2.12.10"

Expand All @@ -65,7 +65,7 @@ resolvers ++= Seq(
)

// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map("firrtl" -> "1.4.1")
val defaultVersions = Map("firrtl" -> "1.4.2")

// Ignore dependencies on Berkeley artifacts.
// scala-steward:off
Expand Down
4 changes: 2 additions & 2 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ trait CrossUnRootedSbtModule extends CrossSbtModule {
}

trait CommonModule extends CrossUnRootedSbtModule with PublishModule {
def publishVersion = "1.4.1"
def publishVersion = "1.4.2"

def pomSettings = PomSettings(
description = artifactName(),
Expand Down Expand Up @@ -69,7 +69,7 @@ object firrtlInterpreter extends Cross[FirrtlInterpreterModule](crossVersions: _
}

// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map("firrtl" -> "1.4.1")
val defaultVersions = Map("firrtl" -> "1.4.2")

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

0 comments on commit 1ca4bc2

Please sign in to comment.