@@ -56,18 +56,18 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
56
56
<dependency >
57
57
<groupId >io.grpc</groupId >
58
58
<artifactId >grpc-netty-shaded</artifactId >
59
- <version >1.66 .0</version >
59
+ <version >1.67 .0</version >
60
60
<scope >runtime</scope >
61
61
</dependency >
62
62
<dependency >
63
63
<groupId >io.grpc</groupId >
64
64
<artifactId >grpc-protobuf</artifactId >
65
- <version >1.66 .0</version >
65
+ <version >1.67 .0</version >
66
66
</dependency >
67
67
<dependency >
68
68
<groupId >io.grpc</groupId >
69
69
<artifactId >grpc-stub</artifactId >
70
- <version >1.66 .0</version >
70
+ <version >1.67 .0</version >
71
71
</dependency >
72
72
<dependency > <!-- necessary for Java 9+ -->
73
73
<groupId >org.apache.tomcat</groupId >
@@ -79,18 +79,18 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
79
79
80
80
Or for Gradle with non-Android, add to your dependencies:
81
81
``` 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'
85
85
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
86
86
```
87
87
88
88
For Android client, use ` grpc-okhttp ` instead of ` grpc-netty-shaded ` and
89
89
` grpc-protobuf-lite ` instead of ` grpc-protobuf ` :
90
90
``` 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'
94
94
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
95
95
```
96
96
@@ -131,7 +131,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
131
131
<configuration >
132
132
<protocArtifact >com.google.protobuf:protoc:3.25.3:exe:${os.detected.classifier}</protocArtifact >
133
133
<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 >
135
135
</configuration >
136
136
<executions >
137
137
<execution >
@@ -161,7 +161,7 @@ protobuf {
161
161
}
162
162
plugins {
163
163
grpc {
164
- artifact = 'io.grpc:protoc-gen-grpc-java:1.66 .0'
164
+ artifact = 'io.grpc:protoc-gen-grpc-java:1.67 .0'
165
165
}
166
166
}
167
167
generateProtoTasks {
@@ -194,7 +194,7 @@ protobuf {
194
194
}
195
195
plugins {
196
196
grpc {
197
- artifact = 'io.grpc:protoc-gen-grpc-java:1.66 .0'
197
+ artifact = 'io.grpc:protoc-gen-grpc-java:1.67 .0'
198
198
}
199
199
}
200
200
generateProtoTasks {
0 commit comments