@@ -30,8 +30,8 @@ For a guided tour, take a look at the [quick start
3030guide] ( https://grpc.io/docs/languages/java/quickstart ) or the more explanatory [ gRPC
3131basics] ( https://grpc.io/docs/languages/java/basics ) .
3232
33- The [ examples] ( https://github.com/grpc/grpc-java/tree/v1.36.2 /examples ) and the
34- [ Android example] ( https://github.com/grpc/grpc-java/tree/v1.36.2 /examples/android )
33+ The [ examples] ( https://github.com/grpc/grpc-java/tree/v1.36.3 /examples ) and the
34+ [ Android example] ( https://github.com/grpc/grpc-java/tree/v1.36.3 /examples/android )
3535are standalone projects that showcase the usage of gRPC.
3636
3737Download
@@ -42,17 +42,17 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
4242<dependency >
4343 <groupId >io.grpc</groupId >
4444 <artifactId >grpc-netty-shaded</artifactId >
45- <version >1.36.2 </version >
45+ <version >1.36.3 </version >
4646</dependency >
4747<dependency >
4848 <groupId >io.grpc</groupId >
4949 <artifactId >grpc-protobuf</artifactId >
50- <version >1.36.2 </version >
50+ <version >1.36.3 </version >
5151</dependency >
5252<dependency >
5353 <groupId >io.grpc</groupId >
5454 <artifactId >grpc-stub</artifactId >
55- <version >1.36.2 </version >
55+ <version >1.36.3 </version >
5656</dependency >
5757<dependency > <!-- necessary for Java 9+ -->
5858 <groupId >org.apache.tomcat</groupId >
@@ -64,23 +64,23 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
6464
6565Or for Gradle with non-Android, add to your dependencies:
6666``` gradle
67- implementation 'io.grpc:grpc-netty-shaded:1.36.2 '
68- implementation 'io.grpc:grpc-protobuf:1.36.2 '
69- implementation 'io.grpc:grpc-stub:1.36.2 '
67+ implementation 'io.grpc:grpc-netty-shaded:1.36.3 '
68+ implementation 'io.grpc:grpc-protobuf:1.36.3 '
69+ implementation 'io.grpc:grpc-stub:1.36.3 '
7070compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
7171```
7272
7373For Android client, use ` grpc-okhttp ` instead of ` grpc-netty-shaded ` and
7474` grpc-protobuf-lite ` instead of ` grpc-protobuf ` :
7575``` gradle
76- implementation 'io.grpc:grpc-okhttp:1.36.2 '
77- implementation 'io.grpc:grpc-protobuf-lite:1.36.2 '
78- implementation 'io.grpc:grpc-stub:1.36.2 '
76+ implementation 'io.grpc:grpc-okhttp:1.36.3 '
77+ implementation 'io.grpc:grpc-protobuf-lite:1.36.3 '
78+ implementation 'io.grpc:grpc-stub:1.36.3 '
7979compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
8080```
8181
8282[ the JARs] :
83- https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.36.2
83+ https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.36.3
8484
8585Development snapshots are available in [ Sonatypes's snapshot
8686repository] ( https://oss.sonatype.org/content/repositories/snapshots/ ) .
@@ -112,7 +112,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
112112 <configuration >
113113 <protocArtifact >com.google.protobuf:protoc:3.16.3:exe:${os.detected.classifier}</protocArtifact >
114114 <pluginId >grpc-java</pluginId >
115- <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.36.2 :exe:${os.detected.classifier}</pluginArtifact >
115+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.36.3 :exe:${os.detected.classifier}</pluginArtifact >
116116 </configuration >
117117 <executions >
118118 <execution >
@@ -142,7 +142,7 @@ protobuf {
142142 }
143143 plugins {
144144 grpc {
145- artifact = 'io.grpc:protoc-gen-grpc-java:1.36.2 '
145+ artifact = 'io.grpc:protoc-gen-grpc-java:1.36.3 '
146146 }
147147 }
148148 generateProtoTasks {
@@ -175,7 +175,7 @@ protobuf {
175175 }
176176 plugins {
177177 grpc {
178- artifact = 'io.grpc:protoc-gen-grpc-java:1.36.2 '
178+ artifact = 'io.grpc:protoc-gen-grpc-java:1.36.3 '
179179 }
180180 }
181181 generateProtoTasks {
0 commit comments