Skip to content

Commit 61dec9a

Browse files
authored
Bump SBT to 1.8.0 (#2870)
This means dropping Scala 2.12.4 support which is broken in Zinc newer than 1.6.0. Chisel users of Scala 2.12.4 should upgrade to 2.12.17.
1 parent a7ad499 commit 61dec9a

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

build.sbt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ val defaultVersions = Map(
1212
)
1313

1414
lazy val commonSettings = Seq(
15-
resolvers ++= Seq(
16-
Resolver.sonatypeRepo("snapshots"),
17-
Resolver.sonatypeRepo("releases")
18-
),
15+
resolvers ++= Resolver.sonatypeOssRepos("snapshots"),
16+
resolvers ++= Resolver.sonatypeOssRepos("releases"),
1917
organization := "edu.berkeley.cs",
2018
version := "3.6-SNAPSHOT",
2119
autoAPIMappings := true,
@@ -94,7 +92,7 @@ lazy val pluginScalaVersions = Seq(
9492
// scalamacros paradise version used is not published for 2.12.0 and 2.12.1
9593
"2.12.2",
9694
"2.12.3",
97-
"2.12.4",
95+
// 2.12.4 is broken in newer versions of Zinc: https://github.com/sbt/sbt/issues/6838
9896
"2.12.5",
9997
"2.12.6",
10098
"2.12.7",

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.8
1+
sbt.version=1.8.0

0 commit comments

Comments
 (0)