Skip to content

Commit 09dad1e

Browse files
committed
Update README etc to reference 1.42.1
1 parent 96068a1 commit 09dad1e

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

README.md

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

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

3838
Download
@@ -43,17 +43,17 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
4343
<dependency>
4444
<groupId>io.grpc</groupId>
4545
<artifactId>grpc-netty-shaded</artifactId>
46-
<version>1.42.0</version>
46+
<version>1.42.1</version>
4747
</dependency>
4848
<dependency>
4949
<groupId>io.grpc</groupId>
5050
<artifactId>grpc-protobuf</artifactId>
51-
<version>1.42.0</version>
51+
<version>1.42.1</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>io.grpc</groupId>
5555
<artifactId>grpc-stub</artifactId>
56-
<version>1.42.0</version>
56+
<version>1.42.1</version>
5757
</dependency>
5858
<dependency> <!-- necessary for Java 9+ -->
5959
<groupId>org.apache.tomcat</groupId>
@@ -65,23 +65,23 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
6565

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

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

8383
[the JARs]:
84-
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.42.0
84+
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.42.1
8585

8686
Development snapshots are available in [Sonatypes's snapshot
8787
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -111,9 +111,9 @@ For protobuf-based codegen integrated with the Maven build system, you can use
111111
<artifactId>protobuf-maven-plugin</artifactId>
112112
<version>0.6.1</version>
113113
<configuration>
114-
<protocArtifact>com.google.protobuf:protoc:3.17.3:exe:${os.detected.classifier}</protocArtifact>
114+
<protocArtifact>com.google.protobuf:protoc:3.17.2:exe:${os.detected.classifier}</protocArtifact>
115115
<pluginId>grpc-java</pluginId>
116-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.42.0:exe:${os.detected.classifier}</pluginArtifact>
116+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.42.1:exe:${os.detected.classifier}</pluginArtifact>
117117
</configuration>
118118
<executions>
119119
<execution>
@@ -139,11 +139,11 @@ plugins {
139139
140140
protobuf {
141141
protoc {
142-
artifact = "com.google.protobuf:protoc:3.17.3"
142+
artifact = "com.google.protobuf:protoc:3.17.2"
143143
}
144144
plugins {
145145
grpc {
146-
artifact = 'io.grpc:protoc-gen-grpc-java:1.42.0'
146+
artifact = 'io.grpc:protoc-gen-grpc-java:1.42.1'
147147
}
148148
}
149149
generateProtoTasks {
@@ -172,11 +172,11 @@ plugins {
172172
173173
protobuf {
174174
protoc {
175-
artifact = "com.google.protobuf:protoc:3.17.3"
175+
artifact = "com.google.protobuf:protoc:3.17.2"
176176
}
177177
plugins {
178178
grpc {
179-
artifact = 'io.grpc:protoc-gen-grpc-java:1.42.0'
179+
artifact = 'io.grpc:protoc-gen-grpc-java:1.42.1'
180180
}
181181
}
182182
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.42.0'
29+
implementation 'io.grpc:grpc-cronet:1.42.1'
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.42.0'
40-
implementation 'io.grpc:grpc-okhttp:1.42.0'
39+
implementation 'io.grpc:grpc-android:1.42.1'
40+
implementation 'io.grpc:grpc-okhttp:1.42.1'
4141
```
4242

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

0 commit comments

Comments
 (0)