File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3
3
enablePlugins(SiteScaladocPlugin )
4
4
5
5
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 " ,
8
8
// chiseltest intentionally excluded so that release automation does not try to set its version
9
9
// The projects using chiseltest are not published, but SBT resolves dependencies for all projects
10
10
// when doing publishing and will not find a chiseltest release since chiseltest depends on
@@ -15,7 +15,7 @@ lazy val commonSettings = Seq(
15
15
resolvers ++= Resolver .sonatypeOssRepos(" snapshots" ),
16
16
resolvers ++= Resolver .sonatypeOssRepos(" releases" ),
17
17
organization := " edu.berkeley.cs" ,
18
- version := " 3.6.0-RC1 " ,
18
+ version := " 3.6.0-RC2 " ,
19
19
autoAPIMappings := true ,
20
20
scalaVersion := " 2.13.10" ,
21
21
crossScalaVersions := Seq (" 2.13.10" , " 2.12.17" ),
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ object chisel3 extends mill.Cross[chisel3CrossModule]("2.13.10", "2.12.17")
12
12
// Please retain it.
13
13
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
14
14
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 "
17
17
)
18
18
19
19
def getVersion (dep : String , org : String = " edu.berkeley.cs" ) = {
@@ -57,7 +57,7 @@ trait CommonModule extends CrossSbtModule with PublishModule with ScalafmtModule
57
57
v.upickle
58
58
) ++ firrtlIvyDeps
59
59
60
- def publishVersion = " 3.6.0-RC1 "
60
+ def publishVersion = " 3.6.0-RC2 "
61
61
62
62
// 2.12.10 -> Array("2", "12", "10") -> "12" -> 12
63
63
protected def majorVersion = crossScalaVersion.split('.' )(1 ).toInt
You can’t perform that action at this time.
0 commit comments