@@ -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.75 .0/examples ) and the
48- [ Android example] ( https://github.com/grpc/grpc-java/tree/v1.75 .0/examples/android )
47+ The [ examples] ( https://github.com/grpc/grpc-java/tree/v1.76 .0/examples ) and the
48+ [ Android example] ( https://github.com/grpc/grpc-java/tree/v1.76 .0/examples/android )
4949are standalone projects that showcase the usage of gRPC.
5050
5151Download
@@ -56,42 +56,42 @@ 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.75 .0</version >
59+ <version >1.76 .0</version >
6060 <scope >runtime</scope >
6161</dependency >
6262<dependency >
6363 <groupId >io.grpc</groupId >
6464 <artifactId >grpc-protobuf</artifactId >
65- <version >1.75 .0</version >
65+ <version >1.76 .0</version >
6666</dependency >
6767<dependency >
6868 <groupId >io.grpc</groupId >
6969 <artifactId >grpc-stub</artifactId >
70- <version >1.75 .0</version >
70+ <version >1.76 .0</version >
7171</dependency >
7272```
7373
7474Or for Gradle with non-Android, add to your dependencies:
7575``` gradle
76- runtimeOnly 'io.grpc:grpc-netty-shaded:1.75 .0'
77- implementation 'io.grpc:grpc-protobuf:1.75 .0'
78- implementation 'io.grpc:grpc-stub:1.75 .0'
76+ runtimeOnly 'io.grpc:grpc-netty-shaded:1.76 .0'
77+ implementation 'io.grpc:grpc-protobuf:1.76 .0'
78+ implementation 'io.grpc:grpc-stub:1.76 .0'
7979```
8080
8181For Android client, use ` grpc-okhttp ` instead of ` grpc-netty-shaded ` and
8282` grpc-protobuf-lite ` instead of ` grpc-protobuf ` :
8383``` gradle
84- implementation 'io.grpc:grpc-okhttp:1.75 .0'
85- implementation 'io.grpc:grpc-protobuf-lite:1.75 .0'
86- implementation 'io.grpc:grpc-stub:1.75 .0'
84+ implementation 'io.grpc:grpc-okhttp:1.76 .0'
85+ implementation 'io.grpc:grpc-protobuf-lite:1.76 .0'
86+ implementation 'io.grpc:grpc-stub:1.76 .0'
8787```
8888
8989For [ Bazel] ( https://bazel.build ) , you can either
9090[ use Maven] ( https://github.com/bazelbuild/rules_jvm_external )
9191(with the GAVs from above), or use ` @io_grpc_grpc_java//api ` et al (see below).
9292
9393[ the JARs] :
94- https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.75 .0
94+ https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.76 .0
9595
9696Development snapshots are available in [ Sonatypes's snapshot
9797repository] ( https://central.sonatype.com/repository/maven-snapshots/ ) .
@@ -123,7 +123,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
123123 <configuration >
124124 <protocArtifact >com.google.protobuf:protoc:3.25.5:exe:${os.detected.classifier}</protocArtifact >
125125 <pluginId >grpc-java</pluginId >
126- <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.75 .0:exe:${os.detected.classifier}</pluginArtifact >
126+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.76 .0:exe:${os.detected.classifier}</pluginArtifact >
127127 </configuration >
128128 <executions >
129129 <execution >
@@ -149,11 +149,11 @@ plugins {
149149
150150protobuf {
151151 protoc {
152- artifact = "com.google.protobuf:protoc:3.25.5 "
152+ artifact = "com.google.protobuf:protoc:3.25.8 "
153153 }
154154 plugins {
155155 grpc {
156- artifact = 'io.grpc:protoc-gen-grpc-java:1.75 .0'
156+ artifact = 'io.grpc:protoc-gen-grpc-java:1.76 .0'
157157 }
158158 }
159159 generateProtoTasks {
@@ -186,7 +186,7 @@ protobuf {
186186 }
187187 plugins {
188188 grpc {
189- artifact = 'io.grpc:protoc-gen-grpc-java:1.75 .0'
189+ artifact = 'io.grpc:protoc-gen-grpc-java:1.76 .0'
190190 }
191191 }
192192 generateProtoTasks {
0 commit comments