From b645e4167f8b69e884e82a9c89dd6b44ad1fd76f Mon Sep 17 00:00:00 2001 From: Jack Koenig Date: Thu, 10 Nov 2022 21:54:42 -0800 Subject: Workaround issue in release automation (#2574) --- build.sbt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b0d2a666..0001cbae 100644 --- a/build.sbt +++ b/build.sbt @@ -65,7 +65,8 @@ lazy val mimaSettings = Seq( ) lazy val protobufSettings = Seq( - ProtobufConfig / version := "3.18.2", // CVE-2021-22569 + // The parentheses around the version help avoid version ambiguity in release scripts + ProtobufConfig / version := ("3.18.2"), // CVE-2021-22569 ProtobufConfig / sourceDirectory := baseDirectory.value / "src" / "main" / "proto", ProtobufConfig / protobufRunProtoc := (args => com.github.os72.protocjar.Protoc.runProtoc("-v351" +: args.toArray)) ) -- cgit v1.2.3