Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ucbjrl committed Apr 23, 2020
1 parent 94bc3d1 commit a24b7dc
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 @@ -44,7 +44,7 @@ name := "treadle"

organization := "edu.berkeley.cs"

version := "1.2.0-RC2"
version := "1.2.0-RC3"

scalaVersion := "2.12.10"

Expand All @@ -71,7 +71,7 @@ assemblyOutputPath in assembly := file("./utils/bin/treadle.jar")


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

libraryDependencies ++= (Seq("firrtl").map {
dep: String => "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep)) })
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.2.0-RC2"
def publishVersion = "1.2.0-RC3"

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

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

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

0 comments on commit a24b7dc

Please sign in to comment.