Skip to content

Commit d367578

Browse files
all: update readme to point to 1.4.0
1 parent 4d740a5 commit d367578

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -28,37 +28,37 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
2828
<dependency>
2929
<groupId>io.grpc</groupId>
3030
<artifactId>grpc-netty</artifactId>
31-
<version>1.3.0</version>
31+
<version>1.4.0</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>io.grpc</groupId>
3535
<artifactId>grpc-protobuf</artifactId>
36-
<version>1.3.0</version>
36+
<version>1.4.0</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>io.grpc</groupId>
4040
<artifactId>grpc-stub</artifactId>
41-
<version>1.3.0</version>
41+
<version>1.4.0</version>
4242
</dependency>
4343
```
4444

4545
Or for Gradle with non-Android, add to your dependencies:
4646
```gradle
47-
compile 'io.grpc:grpc-netty:1.3.0'
48-
compile 'io.grpc:grpc-protobuf:1.3.0'
49-
compile 'io.grpc:grpc-stub:1.3.0'
47+
compile 'io.grpc:grpc-netty:1.4.0'
48+
compile 'io.grpc:grpc-protobuf:1.4.0'
49+
compile 'io.grpc:grpc-stub:1.4.0'
5050
```
5151

5252
For Android client, use `grpc-okhttp` instead of `grpc-netty` and
5353
`grpc-protobuf-lite` or `grpc-protobuf-nano` instead of `grpc-protobuf`:
5454
```gradle
55-
compile 'io.grpc:grpc-okhttp:1.3.0'
56-
compile 'io.grpc:grpc-protobuf-lite:1.3.0'
57-
compile 'io.grpc:grpc-stub:1.3.0'
55+
compile 'io.grpc:grpc-okhttp:1.4.0'
56+
compile 'io.grpc:grpc-protobuf-lite:1.4.0'
57+
compile 'io.grpc:grpc-stub:1.4.0'
5858
```
5959

6060
[the JARs]:
61-
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.3.0%22
61+
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.4.0%22
6262

6363
Development snapshots are available in [Sonatypes's snapshot
6464
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -85,9 +85,9 @@ For protobuf-based codegen integrated with the Maven build system, you can use
8585
<artifactId>protobuf-maven-plugin</artifactId>
8686
<version>0.5.0</version>
8787
<configuration>
88-
<protocArtifact>com.google.protobuf:protoc:3.2.0:exe:${os.detected.classifier}</protocArtifact>
88+
<protocArtifact>com.google.protobuf:protoc:3.3.0:exe:${os.detected.classifier}</protocArtifact>
8989
<pluginId>grpc-java</pluginId>
90-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.3.0:exe:${os.detected.classifier}</pluginArtifact>
90+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.4.0:exe:${os.detected.classifier}</pluginArtifact>
9191
</configuration>
9292
<executions>
9393
<execution>
@@ -127,7 +127,7 @@ protobuf {
127127
}
128128
plugins {
129129
grpc {
130-
artifact = 'io.grpc:protoc-gen-grpc-java:1.3.0'
130+
artifact = 'io.grpc:protoc-gen-grpc-java:1.4.0'
131131
}
132132
}
133133
generateProtoTasks {

0 commit comments

Comments
 (0)