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

Commit

Permalink
Bump version to RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
ucbjrl committed Mar 27, 2020
1 parent f984b75 commit d6e6abb
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-20200310-SNAPSHOT"
version := "1.2.0-RC1"

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-20200310-SNAPSHOT")
val defaultVersions = Map("firrtl" -> "1.3.0-RC1")

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-20200310-SNAPSHOT"
def publishVersion = "1.2.0-RC1"

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-20200310-SNAPSHOT")
val defaultVersions = Map("firrtl" -> "1.3.0-RC1")

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

0 comments on commit d6e6abb

Please sign in to comment.