diff --git a/README.adoc b/README.adoc index dfe7988d..95226e16 100644 --- a/README.adoc +++ b/README.adoc @@ -26,7 +26,7 @@ repositories { } dependencies { - compile 'io.github.lognet:grpc-spring-boot-starter:3.2.0' + compile 'io.github.lognet:grpc-spring-boot-starter:3.2.1' } @@ -55,8 +55,8 @@ The release notes with compatibility matrix can be found link:ReleaseNotes.adoc[ port: 6565 ---- [NOTE] -A random port can be defined by setting the port to `0`. The actual port being used can then be retrieved from the property `local.grpc.port`, or -using `@LocalRunningGrpcPort` annotation which will inject the running port (explicitly configured or randomly selected) +A random port can be defined by setting the port to `0`. + +The actual port being used can then be retrieved by using `@LocalRunningGrpcPort` annotation on `int` field which will inject the running port (explicitly configured or randomly selected) * Optionally enable server reflection, see https://github.com/grpc/grpc-java/blob/master/documentation/server-reflection-tutorial.md) diff --git a/ReleaseNotes.adoc b/ReleaseNotes.adoc index 152d382d..407c89a4 100644 --- a/ReleaseNotes.adoc +++ b/ReleaseNotes.adoc @@ -1,3 +1,7 @@ +== Version 3.2.1 +* Closes #103 and #99 +Property `local.grpc.port` was removed , please use `@LocalRunningGrpcPort` annotation on `int` field to get running port. + == Version 3.2.0 * gRPC version upgraded to 1.19.0 diff --git a/gradle.properties b/gradle.properties index 4798d0f5..2bef03ac 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,5 @@ -version=3.2.1-SNAPSHOT +version=3.2.1 group=io.github.lognet -#group=org.lognet description=Spring Boot starter for Google RPC. gitHubUrl=https\://github.com/LogNet/grpc-spring-boot-starter