Skip to content

Commit aadc88c

Browse files
author
Alexander Furer
committed
release version=3.2.2
1 parent 79be5a9 commit aadc88c

File tree

6 files changed

+8
-21
lines changed

6 files changed

+8
-21
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repositories {
2626
2727
}
2828
dependencies {
29-
compile 'io.github.lognet:grpc-spring-boot-starter:3.2.1'
29+
compile 'io.github.lognet:grpc-spring-boot-starter:3.2.2'
3030
}
3131
3232

ReleaseNotes.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
== Version 3.2.2
2+
* gRPC version upgraded to 1.20.0
3+
14
== Version 3.2.1
25
* Closes #103 and #99
36
Property `local.grpc.port` was removed , please use `@LocalRunningGrpcPort` annotation on `int` field to get running port.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ buildscript {
22
ext {
33
springBoot_1_X_Version = '1.5.13.RELEASE'
44
springBoot_2_X_Version = '2.1.3.RELEASE'
5-
grpcVersion = '1.19.0'
5+
grpcVersion = '1.20.0'
66
}
77
repositories {
88
mavenCentral()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=3.2.2-SNAPSHOT
1+
version=3.2.2
22
group=io.github.lognet
33
description=Spring Boot starter for Google RPC.
44
gitHubUrl=https\://github.com/LogNet/grpc-spring-boot-starter

grpc-spring-boot-starter-demo/src/main/protoGen/io/grpc/examples/CalculatorGrpc.java

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
11
package io.grpc.examples;
22

33
import static io.grpc.MethodDescriptor.generateFullMethodName;
4-
import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall;
5-
import static io.grpc.stub.ClientCalls.asyncClientStreamingCall;
6-
import static io.grpc.stub.ClientCalls.asyncServerStreamingCall;
74
import static io.grpc.stub.ClientCalls.asyncUnaryCall;
8-
import static io.grpc.stub.ClientCalls.blockingServerStreamingCall;
95
import static io.grpc.stub.ClientCalls.blockingUnaryCall;
106
import static io.grpc.stub.ClientCalls.futureUnaryCall;
11-
import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall;
12-
import static io.grpc.stub.ServerCalls.asyncClientStreamingCall;
13-
import static io.grpc.stub.ServerCalls.asyncServerStreamingCall;
147
import static io.grpc.stub.ServerCalls.asyncUnaryCall;
15-
import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall;
168
import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
179

1810
/**
1911
*/
2012
@javax.annotation.Generated(
21-
value = "by gRPC proto compiler (version 1.19.0)",
13+
value = "by gRPC proto compiler (version 1.20.0)",
2214
comments = "Source: calculator.proto")
2315
public final class CalculatorGrpc {
2416

grpc-spring-boot-starter-demo/src/main/protoGen/io/grpc/examples/GreeterGrpc.java

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
package io.grpc.examples;
22

33
import static io.grpc.MethodDescriptor.generateFullMethodName;
4-
import static io.grpc.stub.ClientCalls.asyncBidiStreamingCall;
5-
import static io.grpc.stub.ClientCalls.asyncClientStreamingCall;
6-
import static io.grpc.stub.ClientCalls.asyncServerStreamingCall;
74
import static io.grpc.stub.ClientCalls.asyncUnaryCall;
8-
import static io.grpc.stub.ClientCalls.blockingServerStreamingCall;
95
import static io.grpc.stub.ClientCalls.blockingUnaryCall;
106
import static io.grpc.stub.ClientCalls.futureUnaryCall;
11-
import static io.grpc.stub.ServerCalls.asyncBidiStreamingCall;
12-
import static io.grpc.stub.ServerCalls.asyncClientStreamingCall;
13-
import static io.grpc.stub.ServerCalls.asyncServerStreamingCall;
147
import static io.grpc.stub.ServerCalls.asyncUnaryCall;
15-
import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall;
168
import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall;
179

1810
/**
@@ -21,7 +13,7 @@
2113
* </pre>
2214
*/
2315
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 1.19.0)",
16+
value = "by gRPC proto compiler (version 1.20.0)",
2517
comments = "Source: greeter.proto")
2618
public final class GreeterGrpc {
2719

0 commit comments

Comments
 (0)