@@ -44,8 +44,8 @@ For a guided tour, take a look at the [quick start
4444guide] ( https://grpc.io/docs/languages/java/quickstart ) or the more explanatory [ gRPC
4545basics] ( https://grpc.io/docs/languages/java/basics ) .
4646
47- The [ examples] ( https://github.com/grpc/grpc-java/tree/v1.54.0 /examples ) and the
48- [ Android example] ( https://github.com/grpc/grpc-java/tree/v1.54.0 /examples/android )
47+ The [ examples] ( https://github.com/grpc/grpc-java/tree/v1.54.1 /examples ) and the
48+ [ Android example] ( https://github.com/grpc/grpc-java/tree/v1.54.1 /examples/android )
4949are standalone projects that showcase the usage of gRPC.
5050
5151Download
@@ -56,18 +56,18 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
5656<dependency >
5757 <groupId >io.grpc</groupId >
5858 <artifactId >grpc-netty-shaded</artifactId >
59- <version >1.54.0 </version >
59+ <version >1.54.1 </version >
6060 <scope >runtime</scope >
6161</dependency >
6262<dependency >
6363 <groupId >io.grpc</groupId >
6464 <artifactId >grpc-protobuf</artifactId >
65- <version >1.54.0 </version >
65+ <version >1.54.1 </version >
6666</dependency >
6767<dependency >
6868 <groupId >io.grpc</groupId >
6969 <artifactId >grpc-stub</artifactId >
70- <version >1.54.0 </version >
70+ <version >1.54.1 </version >
7171</dependency >
7272<dependency > <!-- necessary for Java 9+ -->
7373 <groupId >org.apache.tomcat</groupId >
@@ -79,23 +79,23 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
7979
8080Or for Gradle with non-Android, add to your dependencies:
8181``` gradle
82- runtimeOnly 'io.grpc:grpc-netty-shaded:1.54.0 '
83- implementation 'io.grpc:grpc-protobuf:1.54.0 '
84- implementation 'io.grpc:grpc-stub:1.54.0 '
82+ runtimeOnly 'io.grpc:grpc-netty-shaded:1.54.1 '
83+ implementation 'io.grpc:grpc-protobuf:1.54.1 '
84+ implementation 'io.grpc:grpc-stub:1.54.1 '
8585compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
8686```
8787
8888For Android client, use ` grpc-okhttp ` instead of ` grpc-netty-shaded ` and
8989` grpc-protobuf-lite ` instead of ` grpc-protobuf ` :
9090``` gradle
91- implementation 'io.grpc:grpc-okhttp:1.54.0 '
92- implementation 'io.grpc:grpc-protobuf-lite:1.54.0 '
93- implementation 'io.grpc:grpc-stub:1.54.0 '
91+ implementation 'io.grpc:grpc-okhttp:1.54.1 '
92+ implementation 'io.grpc:grpc-protobuf-lite:1.54.1 '
93+ implementation 'io.grpc:grpc-stub:1.54.1 '
9494compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
9595```
9696
9797[ the JARs] :
98- https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.54.0
98+ https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.54.1
9999
100100Development snapshots are available in [ Sonatypes's snapshot
101101repository] ( https://oss.sonatype.org/content/repositories/snapshots/ ) .
@@ -127,7 +127,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
127127 <configuration >
128128 <protocArtifact >com.google.protobuf:protoc:3.21.7:exe:${os.detected.classifier}</protocArtifact >
129129 <pluginId >grpc-java</pluginId >
130- <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.54.0 :exe:${os.detected.classifier}</pluginArtifact >
130+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.54.1 :exe:${os.detected.classifier}</pluginArtifact >
131131 </configuration >
132132 <executions >
133133 <execution >
@@ -157,7 +157,7 @@ protobuf {
157157 }
158158 plugins {
159159 grpc {
160- artifact = 'io.grpc:protoc-gen-grpc-java:1.54.0 '
160+ artifact = 'io.grpc:protoc-gen-grpc-java:1.54.1 '
161161 }
162162 }
163163 generateProtoTasks {
@@ -190,7 +190,7 @@ protobuf {
190190 }
191191 plugins {
192192 grpc {
193- artifact = 'io.grpc:protoc-gen-grpc-java:1.54.0 '
193+ artifact = 'io.grpc:protoc-gen-grpc-java:1.54.1 '
194194 }
195195 }
196196 generateProtoTasks {
0 commit comments