diff --git a/examples/fullapp/build.sbt b/examples/fullapp/build.sbt index e12379c8..36ce1a46 100644 --- a/examples/fullapp/build.sbt +++ b/examples/fullapp/build.sbt @@ -6,7 +6,7 @@ ThisBuild / cancelable := true ThisBuild / connectInput := true -val grpcVersion = "1.64.0" +val grpcVersion = "1.64.2" lazy val protos = crossProject(JSPlatform, JVMPlatform) .in(file("protos")) diff --git a/examples/helloworld/build.sbt b/examples/helloworld/build.sbt index cc8a3d82..3aaa934f 100644 --- a/examples/helloworld/build.sbt +++ b/examples/helloworld/build.sbt @@ -2,7 +2,7 @@ scalaVersion := "2.13.15" resolvers ++= Resolver.sonatypeOssRepos("snapshots") -val grpcVersion = "1.64.0" +val grpcVersion = "1.64.2" Compile / PB.targets := Seq( scalapb.gen(grpc = true) -> (Compile / sourceManaged).value, diff --git a/examples/routeguide/build.sbt b/examples/routeguide/build.sbt index c240c6bd..ba554a2a 100644 --- a/examples/routeguide/build.sbt +++ b/examples/routeguide/build.sbt @@ -2,7 +2,7 @@ scalaVersion := "2.13.15" resolvers ++= Resolver.sonatypeOssRepos("snapshots") -val grpcVersion = "1.64.0" +val grpcVersion = "1.64.2" Compile / PB.targets := Seq( scalapb.gen(grpc = true) -> (Compile / sourceManaged).value, diff --git a/project/Versions.scala b/project/Versions.scala index d7957bd7..23e3a791 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -1,4 +1,4 @@ object Version { val zio = "2.1.13" - val grpc = "1.64.0" + val grpc = "1.64.2" }