Skip to content

Commit 478c9e4

Browse files
committed
Update README etc to reference 1.30.0
1 parent 238c952 commit 478c9e4

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

README.md

Lines changed: 16 additions & 16 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.29.0/examples) and the
34-
[Android example](https://github.com/grpc/grpc-java/tree/v1.29.0/examples/android)
33+
The [examples](https://github.com/grpc/grpc-java/tree/v1.30.0/examples) and the
34+
[Android example](https://github.com/grpc/grpc-java/tree/v1.30.0/examples/android)
3535
are standalone projects that showcase the usage of gRPC.
3636

3737
Download
@@ -42,17 +42,17 @@ 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.29.0</version>
45+
<version>1.30.0</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>io.grpc</groupId>
4949
<artifactId>grpc-protobuf</artifactId>
50-
<version>1.29.0</version>
50+
<version>1.30.0</version>
5151
</dependency>
5252
<dependency>
5353
<groupId>io.grpc</groupId>
5454
<artifactId>grpc-stub</artifactId>
55-
<version>1.29.0</version>
55+
<version>1.30.0</version>
5656
</dependency>
5757
<dependency> <!-- necessary for Java 9+ -->
5858
<groupId>org.apache.tomcat</groupId>
@@ -64,23 +64,23 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
6464

6565
Or for Gradle with non-Android, add to your dependencies:
6666
```gradle
67-
implementation 'io.grpc:grpc-netty-shaded:1.29.0'
68-
implementation 'io.grpc:grpc-protobuf:1.29.0'
69-
implementation 'io.grpc:grpc-stub:1.29.0'
67+
implementation 'io.grpc:grpc-netty-shaded:1.30.0'
68+
implementation 'io.grpc:grpc-protobuf:1.30.0'
69+
implementation 'io.grpc:grpc-stub:1.30.0'
7070
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
7171
```
7272

7373
For Android client, use `grpc-okhttp` instead of `grpc-netty-shaded` and
7474
`grpc-protobuf-lite` instead of `grpc-protobuf`:
7575
```gradle
76-
implementation 'io.grpc:grpc-okhttp:1.29.0'
77-
implementation 'io.grpc:grpc-protobuf-lite:1.29.0'
78-
implementation 'io.grpc:grpc-stub:1.29.0'
76+
implementation 'io.grpc:grpc-okhttp:1.30.0'
77+
implementation 'io.grpc:grpc-protobuf-lite:1.30.0'
78+
implementation 'io.grpc:grpc-stub:1.30.0'
7979
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
8080
```
8181

8282
[the JARs]:
83-
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.29.0
83+
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.30.0
8484

8585
Development snapshots are available in [Sonatypes's snapshot
8686
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -110,9 +110,9 @@ For protobuf-based codegen integrated with the Maven build system, you can use
110110
<artifactId>protobuf-maven-plugin</artifactId>
111111
<version>0.6.1</version>
112112
<configuration>
113-
<protocArtifact>com.google.protobuf:protoc:3.11.0:exe:${os.detected.classifier}</protocArtifact>
113+
<protocArtifact>com.google.protobuf:protoc:3.12.0:exe:${os.detected.classifier}</protocArtifact>
114114
<pluginId>grpc-java</pluginId>
115-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.29.0:exe:${os.detected.classifier}</pluginArtifact>
115+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.30.0:exe:${os.detected.classifier}</pluginArtifact>
116116
</configuration>
117117
<executions>
118118
<execution>
@@ -138,11 +138,11 @@ plugins {
138138
139139
protobuf {
140140
protoc {
141-
artifact = "com.google.protobuf:protoc:3.11.0"
141+
artifact = "com.google.protobuf:protoc:3.12.0"
142142
}
143143
plugins {
144144
grpc {
145-
artifact = 'io.grpc:protoc-gen-grpc-java:1.29.0'
145+
artifact = 'io.grpc:protoc-gen-grpc-java:1.30.0'
146146
}
147147
}
148148
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.29.0'
29+
implementation 'io.grpc:grpc-cronet:1.30.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.29.0'
40-
implementation 'io.grpc:grpc-okhttp:1.29.0'
39+
implementation 'io.grpc:grpc-android:1.30.0'
40+
implementation 'io.grpc:grpc-okhttp:1.30.0'
4141
```
4242

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

0 commit comments

Comments
 (0)