Skip to content

Commit aa672ca

Browse files
committed
Update README etc to reference 1.76.0
1 parent 70b7249 commit aa672ca

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ For a guided tour, take a look at the [quick start
4444
guide](https://grpc.io/docs/languages/java/quickstart) or the more explanatory [gRPC
4545
basics](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)
4949
are standalone projects that showcase the usage of gRPC.
5050

5151
Download
@@ -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

7474
Or 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

8181
For 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

8989
For [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

9696
Development snapshots are available in [Sonatypes's snapshot
9797
repository](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
150150
protobuf {
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

Comments
 (0)