Skip to content

Commit 111e348

Browse files
authored
Update README etc to reference 1.28.0 (#6815)
1 parent 47d545a commit 111e348

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ For a guided tour, take a look at the [quick start
3030
guide](https://grpc.io/docs/quickstart/java.html) or the more explanatory [gRPC
3131
basics](https://grpc.io/docs/tutorials/basic/java.html).
3232

33-
The [examples](https://github.com/grpc/grpc-java/tree/v1.27.2/examples) and the
34-
[Android example](https://github.com/grpc/grpc-java/tree/v1.27.2/examples/android)
33+
The [examples](https://github.com/grpc/grpc-java/tree/v1.28.0/examples) and the
34+
[Android example](https://github.com/grpc/grpc-java/tree/v1.28.0/examples/android)
3535
are standalone projects that showcase the usage of gRPC.
3636

3737
Download
@@ -42,37 +42,37 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
4242
<dependency>
4343
<groupId>io.grpc</groupId>
4444
<artifactId>grpc-netty-shaded</artifactId>
45-
<version>1.27.2</version>
45+
<version>1.28.0</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>io.grpc</groupId>
4949
<artifactId>grpc-protobuf</artifactId>
50-
<version>1.27.2</version>
50+
<version>1.28.0</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>io.grpc</groupId>
5454
<artifactId>grpc-stub</artifactId>
55-
<version>1.27.2</version>
55+
<version>1.28.0</version>
5656
</dependency>
5757
```
5858

5959
Or for Gradle with non-Android, add to your dependencies:
6060
```gradle
61-
implementation 'io.grpc:grpc-netty-shaded:1.27.2'
62-
implementation 'io.grpc:grpc-protobuf:1.27.2'
63-
implementation 'io.grpc:grpc-stub:1.27.2'
61+
implementation 'io.grpc:grpc-netty-shaded:1.28.0'
62+
implementation 'io.grpc:grpc-protobuf:1.28.0'
63+
implementation 'io.grpc:grpc-stub:1.28.0'
6464
```
6565

6666
For Android client, use `grpc-okhttp` instead of `grpc-netty-shaded` and
6767
`grpc-protobuf-lite` instead of `grpc-protobuf`:
6868
```gradle
69-
implementation 'io.grpc:grpc-okhttp:1.27.2'
70-
implementation 'io.grpc:grpc-protobuf-lite:1.27.2'
71-
implementation 'io.grpc:grpc-stub:1.27.2'
69+
implementation 'io.grpc:grpc-okhttp:1.28.0'
70+
implementation 'io.grpc:grpc-protobuf-lite:1.28.0'
71+
implementation 'io.grpc:grpc-stub:1.28.0'
7272
```
7373

7474
[the JARs]:
75-
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.27.2
75+
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.28.0
7676

7777
Development snapshots are available in [Sonatypes's snapshot
7878
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -104,7 +104,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
104104
<configuration>
105105
<protocArtifact>com.google.protobuf:protoc:3.11.0:exe:${os.detected.classifier}</protocArtifact>
106106
<pluginId>grpc-java</pluginId>
107-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.27.2:exe:${os.detected.classifier}</pluginArtifact>
107+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.28.0:exe:${os.detected.classifier}</pluginArtifact>
108108
</configuration>
109109
<executions>
110110
<execution>
@@ -134,7 +134,7 @@ protobuf {
134134
}
135135
plugins {
136136
grpc {
137-
artifact = 'io.grpc:protoc-gen-grpc-java:1.27.2'
137+
artifact = 'io.grpc:protoc-gen-grpc-java:1.28.0'
138138
}
139139
}
140140
generateProtoTasks {

cronet/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In your app module's `build.gradle` file, include a dependency on both `grpc-cro
2626
Google Play Services Client Library for Cronet
2727

2828
```
29-
implementation 'io.grpc:grpc-cronet:1.27.2'
29+
implementation 'io.grpc:grpc-cronet:1.28.0'
3030
implementation 'com.google.android.gms:play-services-cronet:16.0.0'
3131
```
3232

documentation/android-channel-builder.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ In your `build.gradle` file, include a dependency on both `grpc-android` and
3636
`grpc-okhttp`:
3737

3838
```
39-
implementation 'io.grpc:grpc-android:1.27.2'
40-
implementation 'io.grpc:grpc-okhttp:1.27.2'
39+
implementation 'io.grpc:grpc-android:1.28.0'
40+
implementation 'io.grpc:grpc-okhttp:1.28.0'
4141
```
4242

4343
You also need permission to access the device's network state in your

examples/example-xds/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ encounter issues please consult [COMPILING.md](../../COMPILING.md).
1919
1. The server does not use XDS, so recent releases work fine. Building using
2020
recent releases is much easier, so check out the most recent release tag:
2121
```
22-
$ git checkout v1.27.2
22+
$ git checkout v1.28.0
2323
```
2424

2525
2. Build the hello-world example server or the hostname example server. See
@@ -40,7 +40,7 @@ $ git checkout master
4040
```
4141
To:
4242
```
43-
grpc { artifact = "io.grpc:protoc-gen-grpc-java:1.27.2" }
43+
grpc { artifact = "io.grpc:protoc-gen-grpc-java:1.28.0" }
4444
```
4545

4646

0 commit comments

Comments
 (0)