Skip to content

Commit e33d2a5

Browse files
committed
Bump version strings.
1 parent 7f983aa commit e33d2a5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
enablePlugins(SiteScaladocPlugin)
44

55
val defaultVersions = Map(
6-
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.6.0-RC1",
7-
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.6.0-RC1",
6+
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.6.0-RC2",
7+
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.6.0-RC2",
88
// chiseltest intentionally excluded so that release automation does not try to set its version
99
// The projects using chiseltest are not published, but SBT resolves dependencies for all projects
1010
// when doing publishing and will not find a chiseltest release since chiseltest depends on
@@ -15,7 +15,7 @@ lazy val commonSettings = Seq(
1515
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
1616
resolvers ++= Resolver.sonatypeOssRepos("releases"),
1717
organization := "edu.berkeley.cs",
18-
version := "3.6.0-RC1",
18+
version := "3.6.0-RC2",
1919
autoAPIMappings := true,
2020
scalaVersion := "2.13.10",
2121
crossScalaVersions := Seq("2.13.10", "2.12.17"),

build.sc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ object chisel3 extends mill.Cross[chisel3CrossModule]("2.13.10", "2.12.17")
1212
// Please retain it.
1313
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
1414
val defaultVersions = Map(
15-
"firrtl" -> "1.6.0-RC1",
16-
"treadle" -> "1.6.0-RC1"
15+
"firrtl" -> "1.6.0-RC2",
16+
"treadle" -> "1.6.0-RC2"
1717
)
1818

1919
def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
@@ -57,7 +57,7 @@ trait CommonModule extends CrossSbtModule with PublishModule with ScalafmtModule
5757
v.upickle
5858
) ++ firrtlIvyDeps
5959

60-
def publishVersion = "3.6.0-RC1"
60+
def publishVersion = "3.6.0-RC2"
6161

6262
// 2.12.10 -> Array("2", "12", "10") -> "12" -> 12
6363
protected def majorVersion = crossScalaVersion.split('.')(1).toInt

0 commit comments

Comments
 (0)