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-SNAPSHOT " ,
7
- " treadle" -> " edu.berkeley.cs" %% " treadle" % " 1.6-SNAPSHOT " ,
6
+ " firrtl" -> " edu.berkeley.cs" %% " firrtl" % " 1.6.0-M1 " ,
7
+ " treadle" -> " edu.berkeley.cs" %% " treadle" % " 1.6.0-M1 " ,
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
@@ -17,7 +17,7 @@ lazy val commonSettings = Seq(
17
17
Resolver .sonatypeRepo(" releases" )
18
18
),
19
19
organization := " edu.berkeley.cs" ,
20
- version := " 3.6-SNAPSHOT " ,
20
+ version := " 3.6.0-M1 " ,
21
21
autoAPIMappings := true ,
22
22
scalaVersion := " 2.12.17" ,
23
23
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-SNAPSHOT " ,
16
- " treadle" -> " 1.6-SNAPSHOT "
15
+ " firrtl" -> " 1.6.0-M1 " ,
16
+ " treadle" -> " 1.6.0-M1 "
17
17
)
18
18
19
19
def getVersion (dep : String , org : String = " edu.berkeley.cs" ) = {
@@ -64,7 +64,7 @@ trait CommonModule extends CrossSbtModule with PublishModule with ScalafmtModule
64
64
v.osLib
65
65
) ++ firrtlIvyDeps
66
66
67
- def publishVersion = " 3.6-SNAPSHOT "
67
+ def publishVersion = " 3.6.0-M1 "
68
68
69
69
// 2.12.10 -> Array("2", "12", "10") -> "12" -> 12
70
70
protected def majorVersion = crossScalaVersion.split('.' )(1 ).toInt
You can’t perform that action at this time.
0 commit comments