Skip to content

Commit

Permalink
Bump version strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkoenig committed Apr 14, 2023
1 parent a123880 commit 8a44b25
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ addCommandAlias("fmt", "; scalafmtAll ; scalafmtSbt")
addCommandAlias("fmtCheck", "; scalafmtCheckAll ; scalafmtSbtCheck")

val defaultVersions = Map(
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.6.0-RC3",
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.6.0-RC3",
"firrtl" -> "edu.berkeley.cs" %% "firrtl" % "1.6.0",
"treadle" -> "edu.berkeley.cs" %% "treadle" % "1.6.0",
// chiseltest intentionally excluded so that release automation does not try to set its version
// The projects using chiseltest are not published, but SBT resolves dependencies for all projects
// when doing publishing and will not find a chiseltest release since chiseltest depends on
Expand All @@ -18,7 +18,7 @@ lazy val commonSettings = Seq(
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
resolvers ++= Resolver.sonatypeOssRepos("releases"),
organization := "edu.berkeley.cs",
version := "3.6.0-RC3",
version := "3.6.0",
autoAPIMappings := true,
scalaVersion := "2.13.10",
crossScalaVersions := Seq("2.13.10", "2.12.17"),
Expand Down
6 changes: 3 additions & 3 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ object chisel3 extends mill.Cross[chisel3CrossModule]("2.13.10", "2.12.17")
// Please retain it.
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"firrtl" -> "1.6.0-RC3",
"treadle" -> "1.6.0-RC3"
"firrtl" -> "1.6.0",
"treadle" -> "1.6.0"
)

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

def publishVersion = "3.6.0-RC3"
def publishVersion = "3.6.0"

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

0 comments on commit 8a44b25

Please sign in to comment.