Skip to content

Commit be55900

Browse files
author
Alexander Furer
committed
release version=3.5.0
1 parent acbc328 commit be55900

File tree

7 files changed

+9
-22
lines changed

7 files changed

+9
-22
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ repositories {
2727
2828
}
2929
dependencies {
30-
compile 'io.github.lognet:grpc-spring-boot-starter:3.4.3'
30+
compile 'io.github.lognet:grpc-spring-boot-starter:3.5.0'
3131
}
3232
3333

ReleaseNotes.adoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
== Version 3.5.0
2+
* gRPC version upgraded to 1.25.0
3+
14
== Version 3.4.3
25
* Spring boot 1.2.x compatibility
36

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.24.0'
5+
grpcVersion = '1.25.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.4.4-SNAPSHOT
1+
version=3.5.0
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.23.0)",
13+
value = "by gRPC proto compiler (version 1.25.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.23.0)",
16+
value = "by gRPC proto compiler (version 1.25.0)",
2517
comments = "Source: greeter.proto")
2618
public final class GreeterGrpc {
2719

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//rootProject.name = 'org.lognet'
1+
rootProject.name = 'grpc-spring-boot-starter-root'
22
include 'grpc-spring-boot-starter'
33
include 'grpc-spring-boot-starter-demo'
44
include 'grpc-spring-boot2-starter-demo'

0 commit comments

Comments
 (0)