Skip to content

Commit

Permalink
Bump version strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkoenig committed Dec 18, 2021
1 parent 87e0a57 commit 9036836
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 @@ -30,7 +30,7 @@ name := "firrtl-interpreter"

organization := "edu.berkeley.cs"

version := "1.5.0-RC1"
version := "1.5.0-RC2"

scalaVersion := "2.12.13"

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

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

// 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 @@ -14,7 +14,7 @@ object firrtlInterpreter extends mill.Cross[firrtlInterpreterCrossModule]("2.13.
// Please retain it.
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"firrtl" -> "1.5.0-RC1"
"firrtl" -> "1.5.0-RC2"
)

def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
Expand All @@ -35,7 +35,7 @@ trait CommonModule extends ScalaModule with SbtModule with PublishModule {

def ivyDeps = super.ivyDeps() ++ firrtlIvyDeps

def publishVersion = "1.5.0-RC1"
def publishVersion = "1.5.0-RC2"

protected def majorVersion = crossVersion.split('.')(1).toInt

Expand Down

0 comments on commit 9036836

Please # to comment.