Skip to content

Commit 8a44b25

Browse files
committed
Bump version strings.
1 parent a123880 commit 8a44b25

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
@@ -6,8 +6,8 @@ addCommandAlias("fmt", "; scalafmtAll ; scalafmtSbt")
66
addCommandAlias("fmtCheck", "; scalafmtCheckAll ; scalafmtSbtCheck")
77

88
val defaultVersions = Map(
9-
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.6.0-RC3",
10-
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.6.0-RC3",
9+
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.6.0",
10+
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.6.0",
1111
// chiseltest intentionally excluded so that release automation does not try to set its version
1212
// The projects using chiseltest are not published, but SBT resolves dependencies for all projects
1313
// when doing publishing and will not find a chiseltest release since chiseltest depends on
@@ -18,7 +18,7 @@ lazy val commonSettings = Seq(
1818
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
1919
resolvers ++= Resolver.sonatypeOssRepos("releases"),
2020
organization := "edu.berkeley.cs",
21-
version := "3.6.0-RC3",
21+
version := "3.6.0",
2222
autoAPIMappings := true,
2323
scalaVersion := "2.13.10",
2424
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-RC3",
16-
"treadle" -> "1.6.0-RC3"
15+
"firrtl" -> "1.6.0",
16+
"treadle" -> "1.6.0"
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-RC3"
60+
def publishVersion = "3.6.0"
6161

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

0 commit comments

Comments
 (0)