Skip to content

Commit 5d347ba

Browse files
authored
Merge pull request #488 from sourcegraph/protoc-downgrade
Downgrade runtime proto dependency to 3.17.3
2 parents fde6193 + 4ee5768 commit 5d347ba

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

build.sbt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ import scala.util.control.NoStackTrace
88

99
lazy val V =
1010
new {
11-
val protobuf = "3.21.4"
11+
val protobuf = "3.15.6"
12+
val protoc =
13+
"3.17.3" // the oldest protoc version with Apple M1 support, see https://github.com/scalapb/ScalaPB/issues/1024#issuecomment-860126568
1214
val coursier = "2.0.8"
1315
val bsp = "2.0.0-M13"
1416
val moped = "0.1.10"
@@ -38,7 +40,7 @@ inThisBuild(
3840
organization := "com.sourcegraph",
3941
homepage := Some(url("https://github.com/sourcegraph/scip-java")),
4042
dynverSeparator := "-",
41-
PB.protocVersion := V.protobuf,
43+
PB.protocVersion := V.protoc,
4244
licenses :=
4345
List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
4446
developers :=

0 commit comments

Comments
 (0)