Skip to content

Commit

Permalink
release 2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Furer committed Oct 21, 2018
1 parent c7f5fb1 commit 292a671
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {
}
dependencies {
compile('org.lognet:grpc-spring-boot-starter:2.4.2')
compile('org.lognet:grpc-spring-boot-starter:2.4.3')
}
----
Expand Down Expand Up @@ -185,7 +185,7 @@ public class MyGRpcServerBuilderConfigurer extends GRpcServerBuilderConfigurer{
.compressorRegistry(YOUR COMPRESSION REGISTRY)
.decompressorRegistry(YOUR DECOMPRESSION REGISTRY)
.useTransportSecurity(YOUR TRANSPORT SECURITY SETTINGS);
((NettyServerBuilder)serverBuilder)// cast to NettyServerBuilder (which is default server) for further customization
((NettyServerBuilder)serverBuilder)// cast to NettyServerBuilder (which is the default server) for further customization
.maxConnectionAge(...)
.maxConnectionAgeGrace(...);
Expand Down
3 changes: 3 additions & 0 deletions ReleaseNotes.adoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
== Version 2.4.3
* gRPC version upgraded to 1.15.1
== Version 2.4.2
* gRPC version upgraded to 1.15.0

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
ext {
springBoot_1_X_Version = '1.5.13.RELEASE'
springBoot_2_X_Version = '2.0.3.RELEASE'
grpcVersion = '1.15.0'
grpcVersion = '1.15.1'
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=2.4.3-SNAPSHOT
version=2.4.3
#group=io.github.lognet
group=org.lognet
description=Spring Boot starter for Google RPC.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.15.0)",
value = "by gRPC proto compiler (version 1.15.1)",
comments = "Source: calculator.proto")
public final class CalculatorGrpc {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* </pre>
*/
@javax.annotation.Generated(
value = "by gRPC proto compiler (version 1.15.0)",
value = "by gRPC proto compiler (version 1.15.1)",
comments = "Source: greeter.proto")
public final class GreeterGrpc {

Expand Down

0 comments on commit 292a671

Please sign in to comment.