@@ -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.1.2 </version >
31+ <version >1.2.0 </version >
3232</dependency >
3333<dependency >
3434 <groupId >io.grpc</groupId >
3535 <artifactId >grpc-protobuf</artifactId >
36- <version >1.1.2 </version >
36+ <version >1.2.0 </version >
3737</dependency >
3838<dependency >
3939 <groupId >io.grpc</groupId >
4040 <artifactId >grpc-stub</artifactId >
41- <version >1.1.2 </version >
41+ <version >1.2.0 </version >
4242</dependency >
4343```
4444
4545Or for Gradle with non-Android, add to your dependencies:
4646``` gradle
47- compile 'io.grpc:grpc-netty:1.1.2 '
48- compile 'io.grpc:grpc-protobuf:1.1.2 '
49- compile 'io.grpc:grpc-stub:1.1.2 '
47+ compile 'io.grpc:grpc-netty:1.2.0 '
48+ compile 'io.grpc:grpc-protobuf:1.2.0 '
49+ compile 'io.grpc:grpc-stub:1.2.0 '
5050```
5151
5252For 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.1.2 '
56- compile 'io.grpc:grpc-protobuf-lite:1.1.2 '
57- compile 'io.grpc:grpc-stub:1.1.2 '
55+ compile 'io.grpc:grpc-okhttp:1.2.0 '
56+ compile 'io.grpc:grpc-protobuf-lite:1.2.0 '
57+ compile 'io.grpc:grpc-stub:1.2.0 '
5858```
5959
6060[ the JARs] :
61- http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.1.2 %22
61+ http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.2.0 %22
6262
6363Development snapshots are available in [ Sonatypes's snapshot
6464repository] ( https://oss.sonatype.org/content/repositories/snapshots/ ) .
@@ -87,7 +87,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
8787 <configuration >
8888 <protocArtifact >com.google.protobuf:protoc:3.0.2:exe:${os.detected.classifier}</protocArtifact >
8989 <pluginId >grpc-java</pluginId >
90- <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.1.2 :exe:${os.detected.classifier}</pluginArtifact >
90+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.2.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.1.2 '
130+ artifact = 'io.grpc:protoc-gen-grpc-java:1.2.0 '
131131 }
132132 }
133133 generateProtoTasks {
0 commit comments