aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEric Gribkoff <ericgribkoff@google.com>2018-02-15 18:54:38 -0800
committerGitHub <noreply@github.com>2018-02-15 18:54:38 -0800
commit0c27e719ae427c78e9090afff9fa8ecad6f91b74 (patch)
treed93eaca3d4350a4acb082cc1ddb1301122c0d464 /README.md
parenta414b91a5991dc687b43b095823dc319ed02aae5 (diff)
downloadgrpc-grpc-java-0c27e719ae427c78e9090afff9fa8ecad6f91b74.tar.gz
Update README to reference 1.10.0 (#4090)
Diffstat (limited to 'README.md')
-rw-r--r--README.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/README.md b/README.md
index e7205fdf1..85f4c4650 100644
--- a/README.md
+++ b/README.md
@@ -30,33 +30,33 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty</artifactId>
- <version>1.9.0</version>
+ <version>1.10.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
- <version>1.9.0</version>
+ <version>1.10.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
- <version>1.9.0</version>
+ <version>1.10.0</version>
</dependency>
```
Or for Gradle with non-Android, add to your dependencies:
```gradle
-compile 'io.grpc:grpc-netty:1.9.0'
-compile 'io.grpc:grpc-protobuf:1.9.0'
-compile 'io.grpc:grpc-stub:1.9.0'
+compile 'io.grpc:grpc-netty:1.10.0'
+compile 'io.grpc:grpc-protobuf:1.10.0'
+compile 'io.grpc:grpc-stub:1.10.0'
```
For Android client, use `grpc-okhttp` instead of `grpc-netty` and
`grpc-protobuf-lite` or `grpc-protobuf-nano` instead of `grpc-protobuf`:
```gradle
-compile 'io.grpc:grpc-okhttp:1.9.0'
-compile 'io.grpc:grpc-protobuf-lite:1.9.0'
-compile 'io.grpc:grpc-stub:1.9.0'
+compile 'io.grpc:grpc-okhttp:1.10.0'
+compile 'io.grpc:grpc-protobuf-lite:1.10.0'
+compile 'io.grpc:grpc-stub:1.10.0'
```
[the JARs]:
@@ -89,7 +89,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
- <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.9.0:exe:${os.detected.classifier}</pluginArtifact>
+ <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.10.0:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
@@ -129,7 +129,7 @@ protobuf {
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:1.9.0'
+ artifact = 'io.grpc:protoc-gen-grpc-java:1.10.0'
}
}
generateProtoTasks {