Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update grpc-core, grpc-interop-testing, ... to 1.32.1 #1119

Merged
merged 1 commit into from Sep 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmark-java/build.sbt
Expand Up @@ -5,7 +5,7 @@ javaOptions in run ++= List("-Xms1g", "-Xmx1g", "-XX:+PrintGCDetails", "-XX:+Pr
// generate both client and server (default) in Java
akkaGrpcGeneratedLanguages := Seq(AkkaGrpc.Java)

val grpcVersion = "1.31.1" // checked synced by GrpcVersionSyncCheckPlugin
val grpcVersion = "1.32.1" // checked synced by GrpcVersionSyncCheckPlugin

val runtimeProject = ProjectRef(file("../"), "akka-grpc-runtime")

Expand Down
2 changes: 1 addition & 1 deletion plugin-tester-java/pom.xml
Expand Up @@ -14,7 +14,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<akka.http.cors.version>0.4.2</akka.http.cors.version>
<grpc.version>1.31.1</grpc.version> <!-- checked synced by GrpcVersionSyncCheckPlugin -->
<grpc.version>1.32.1</grpc.version> <!-- checked synced by GrpcVersionSyncCheckPlugin -->
<project.encoding>UTF-8</project.encoding>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion plugin-tester-scala/pom.xml
Expand Up @@ -15,7 +15,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<akka.version>2.5.13</akka.version>
<akka.http.cors.version>0.4.2</akka.http.cors.version>
<grpc.version>1.31.1</grpc.version> <!-- checked synced by GrpcVersionSyncCheckPlugin -->
<grpc.version>1.32.1</grpc.version> <!-- checked synced by GrpcVersionSyncCheckPlugin -->
<project.encoding>UTF-8</project.encoding>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Expand Up @@ -21,7 +21,7 @@ object Dependencies {
val akkaHttp = "10.1.12"
val akkaHttpBinary = "10.1"

val grpc = "1.31.1" // checked synced by GrpcVersionSyncCheckPlugin
val grpc = "1.32.1" // checked synced by GrpcVersionSyncCheckPlugin

val scalaTest = "3.1.3"

Expand Down
Expand Up @@ -6,7 +6,7 @@ organization := "com.lightbend.akka.grpc"
resolvers += Resolver.bintrayRepo("akka", "maven")
resolvers += Resolver.bintrayRepo("akka", "snapshots")

val grpcVersion = "1.31.1" // checked synced by GrpcVersionSyncCheckPlugin
val grpcVersion = "1.32.1" // checked synced by GrpcVersionSyncCheckPlugin

libraryDependencies ++= Seq(
"io.grpc" % "grpc-interop-testing" % grpcVersion % "protobuf-src",
Expand Down