@@ -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.66 .0</version >
59+ <version >1.67 .0</version >
6060 <scope >runtime</scope >
6161</dependency >
6262<dependency >
6363 <groupId >io.grpc</groupId >
6464 <artifactId >grpc-protobuf</artifactId >
65- <version >1.66 .0</version >
65+ <version >1.67 .0</version >
6666</dependency >
6767<dependency >
6868 <groupId >io.grpc</groupId >
6969 <artifactId >grpc-stub</artifactId >
70- <version >1.66 .0</version >
70+ <version >1.67 .0</version >
7171</dependency >
7272<dependency > <!-- necessary for Java 9+ -->
7373 <groupId >org.apache.tomcat</groupId >
@@ -79,18 +79,18 @@ 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.66 .0'
83- implementation 'io.grpc:grpc-protobuf:1.66 .0'
84- implementation 'io.grpc:grpc-stub:1.66 .0'
82+ runtimeOnly 'io.grpc:grpc-netty-shaded:1.67 .0'
83+ implementation 'io.grpc:grpc-protobuf:1.67 .0'
84+ implementation 'io.grpc:grpc-stub:1.67 .0'
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.66 .0'
92- implementation 'io.grpc:grpc-protobuf-lite:1.66 .0'
93- implementation 'io.grpc:grpc-stub:1.66 .0'
91+ implementation 'io.grpc:grpc-okhttp:1.67 .0'
92+ implementation 'io.grpc:grpc-protobuf-lite:1.67 .0'
93+ implementation 'io.grpc:grpc-stub:1.67 .0'
9494compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
9595```
9696
@@ -131,7 +131,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
131131 <configuration >
132132 <protocArtifact >com.google.protobuf:protoc:3.25.3:exe:${os.detected.classifier}</protocArtifact >
133133 <pluginId >grpc-java</pluginId >
134- <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.66 .0:exe:${os.detected.classifier}</pluginArtifact >
134+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.67 .0:exe:${os.detected.classifier}</pluginArtifact >
135135 </configuration >
136136 <executions >
137137 <execution >
@@ -161,7 +161,7 @@ protobuf {
161161 }
162162 plugins {
163163 grpc {
164- artifact = 'io.grpc:protoc-gen-grpc-java:1.66 .0'
164+ artifact = 'io.grpc:protoc-gen-grpc-java:1.67 .0'
165165 }
166166 }
167167 generateProtoTasks {
@@ -194,7 +194,7 @@ protobuf {
194194 }
195195 plugins {
196196 grpc {
197- artifact = 'io.grpc:protoc-gen-grpc-java:1.66 .0'
197+ artifact = 'io.grpc:protoc-gen-grpc-java:1.67 .0'
198198 }
199199 }
200200 generateProtoTasks {
0 commit comments