Skip to content

Commit ccf8e9a

Browse files
committed
Bump version.
1 parent 1b16c5f commit ccf8e9a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ def javacOptionsVersion(scalaVersion: String): Seq[String] = {
2828
}
2929
}
3030

31-
val defaultVersions = Map("firrtl" -> "1.3.0-RC2")
31+
val defaultVersions = Map("firrtl" -> "1.3.0-RC3")
3232

3333
lazy val commonSettings = Seq (
3434
resolvers ++= Seq(
3535
Resolver.sonatypeRepo("snapshots"),
3636
Resolver.sonatypeRepo("releases")
3737
),
3838
organization := "edu.berkeley.cs",
39-
version := "3.3.0-RC2",
39+
version := "3.3.0-RC3",
4040
autoAPIMappings := true,
4141
scalaVersion := "2.12.11",
4242
crossScalaVersions := Seq("2.12.11", "2.11.12"),

build.sc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ object chisel3 extends mill.Cross[chisel3CrossModule]("2.11.12", "2.12.11")
1111
// The following stanza is searched for and used when preparing releases.
1212
// Please retain it.
1313
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
14-
val defaultVersions = Map("firrtl" -> "1.3.0-RC2")
14+
val defaultVersions = Map("firrtl" -> "1.3.0-RC3")
1515

1616
def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
1717
val version = sys.env.getOrElse(dep + "Version", defaultVersions(dep))
@@ -22,7 +22,7 @@ def getVersion(dep: String, org: String = "edu.berkeley.cs") = {
2222
trait CommonModule extends ScalaModule with SbtModule with PublishModule {
2323
def firrtlModule: Option[PublishModule]
2424

25-
def publishVersion = "3.3.0-RC2"
25+
def publishVersion = "3.3.0-RC3"
2626

2727
// 2.12.11 -> Array("2", "12", "10") -> "12" -> 12
2828
protected def majorVersion = crossVersion.split('.')(1).toInt

0 commit comments

Comments
 (0)