Skip to content

Commit 5bb57df

Browse files
Merge pull request #335 from scala-steward/update/protobuf-java-3.21.10
Update protobuf-java to 3.21.10
2 parents aa2d54b + e229ca3 commit 5bb57df

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ lazy val commonSettings = Seq(
1313
scalaVersion := dottyVersion,
1414
resolvers += Resolver.mavenLocal,
1515
resolvers += "Sonatype OSS Snapshots" at "https://s01.oss.sonatype.org/content/repositories/snapshots",
16-
updateOptions := updateOptions.value.withLatestSnapshots(false),
17-
libraryDependencies += "com.google.protobuf" % "protobuf-java" % "3.21.9",
16+
updateOptions := updateOptions.value.withLatestSnapshots(false),
17+
libraryDependencies += "com.google.protobuf" % "protobuf-java" % "3.21.10",
1818
scalacOptions ++= Seq(
1919
"-explain",
2020
"-explain-types",
@@ -25,7 +25,7 @@ lazy val commonSettings = Seq(
2525
// "-release:19",
2626
"-rewrite"
2727
),
28-
versionPolicyIntention := Compatibility.BinaryCompatible, //As long as we are pre 1.0.0, BinaryCompatible for a patch version bump and None for a minor version bump
28+
versionPolicyIntention := Compatibility.BinaryCompatible, // As long as we are pre 1.0.0, BinaryCompatible for a patch version bump and None for a minor version bump
2929
versionScheme := Some("early-semver"),
3030
// mimaPreviousArtifacts := Set("org.emergent-order" %%% "onnx-scala-common" % "0.17.0"),
3131
autoCompilerPlugins := true
@@ -74,7 +74,7 @@ lazy val backends = (crossProject(JSPlatform, JVMPlatform, NativePlatform)
7474
scalacOptions ++= Seq("-source:3.2"),
7575
// mimaPreviousArtifacts := Set("org.emergent-order" %%% "onnx-scala-backends" % "0.17.0"),
7676
libraryDependencies ++= Seq(
77-
"com.microsoft.onnxruntime" % "onnxruntime" % "1.13.1",
77+
"com.microsoft.onnxruntime" % "onnxruntime" % "1.13.1"
7878
// "com.microsoft.onnxruntime" % "onnxruntime-extensions" % "0.5.0"
7979
),
8080
libraryDependencies += ("org.scalatest" %%% "scalatest" % scalaTestVersion) % Test,
@@ -88,12 +88,12 @@ lazy val backends = (crossProject(JSPlatform, JVMPlatform, NativePlatform)
8888
webpackCliVersion := "4.10.0",
8989
startWebpackDevServer / version := "4.11.1",
9090
scalaJSUseMainModuleInitializer := true, // , //Testing
91-
Compile / npmDependencies += "onnxruntime-web" -> "1.13.1",
91+
Compile / npmDependencies += "onnxruntime-web" -> "1.13.1",
9292
Compile / npmDependencies += "onnxruntime-common" -> "1.13.1",
9393
Compile / npmDependencies += "typescript" -> "4.8.4",
9494
libraryDependencies += "org.typelevel" %%% "cats-effect-testing-scalatest" % "1.5.0" % Test,
9595
stOutputPackage := "org.emergentorder.onnx",
96-
stShortModuleNames := true,
96+
stShortModuleNames := true,
9797
scalaJSStage := FullOptStage,
9898
scalaJSLinkerConfig ~= (_.withESFeatures(
9999
_.withESVersion(org.scalajs.linker.interface.ESVersion.ES2021)

0 commit comments

Comments
 (0)