aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCarl Mastrangelo <notcarl@google.com>2017-04-28 13:36:21 -0700
committerGitHub <noreply@github.com>2017-04-28 13:36:21 -0700
commit8dc29f91bb490005d5a7c51c684b73000cf9206d (patch)
tree7ca61cd6df64ab3df67c77ee229c75038548cd83 /README.md
parent50a92e01dc752e7ad2f1a012f9efa4ef3362ff77 (diff)
downloadgrpc-grpc-java-8dc29f91bb490005d5a7c51c684b73000cf9206d.tar.gz
all: bump recommended gRPC and Proto to 1.3.0 and 3.2.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md28
1 files changed, 14 insertions, 14 deletions
diff --git a/README.md b/README.md
index 239d37d06..621384705 100644
--- a/README.md
+++ b/README.md
@@ -28,37 +28,37 @@ 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.2.0</version>
+ <version>1.3.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
- <version>1.2.0</version>
+ <version>1.3.0</version>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
- <version>1.2.0</version>
+ <version>1.3.0</version>
</dependency>
```
Or for Gradle with non-Android, add to your dependencies:
```gradle
-compile 'io.grpc:grpc-netty:1.2.0'
-compile 'io.grpc:grpc-protobuf:1.2.0'
-compile 'io.grpc:grpc-stub:1.2.0'
+compile 'io.grpc:grpc-netty:1.3.0'
+compile 'io.grpc:grpc-protobuf:1.3.0'
+compile 'io.grpc:grpc-stub:1.3.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.2.0'
-compile 'io.grpc:grpc-protobuf-lite:1.2.0'
-compile 'io.grpc:grpc-stub:1.2.0'
+compile 'io.grpc:grpc-okhttp:1.3.0'
+compile 'io.grpc:grpc-protobuf-lite:1.3.0'
+compile 'io.grpc:grpc-stub:1.3.0'
```
[the JARs]:
-http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.2.0%22
+http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.3.0%22
Development snapshots are available in [Sonatypes's snapshot
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
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.5.0</version>
<configuration>
- <protocArtifact>com.google.protobuf:protoc:3.0.2:exe:${os.detected.classifier}</protocArtifact>
+ <protocArtifact>com.google.protobuf:protoc:3.2.0:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
- <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.2.0:exe:${os.detected.classifier}</pluginArtifact>
+ <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.3.0:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
@@ -123,11 +123,11 @@ buildscript {
protobuf {
protoc {
- artifact = "com.google.protobuf:protoc:3.0.2"
+ artifact = "com.google.protobuf:protoc:3.2.0"
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:1.2.0'
+ artifact = 'io.grpc:protoc-gen-grpc-java:1.3.0'
}
}
generateProtoTasks {