@@ -27,37 +27,37 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
27
27
<dependency >
28
28
<groupId >io.grpc</groupId >
29
29
<artifactId >grpc-netty</artifactId >
30
- <version >1.0.0 </version >
30
+ <version >1.0.1 </version >
31
31
</dependency >
32
32
<dependency >
33
33
<groupId >io.grpc</groupId >
34
34
<artifactId >grpc-protobuf</artifactId >
35
- <version >1.0.0 </version >
35
+ <version >1.0.1 </version >
36
36
</dependency >
37
37
<dependency >
38
38
<groupId >io.grpc</groupId >
39
39
<artifactId >grpc-stub</artifactId >
40
- <version >1.0.0 </version >
40
+ <version >1.0.1 </version >
41
41
</dependency >
42
42
```
43
43
44
44
Or for Gradle with non-Android, add to your dependencies:
45
45
``` gradle
46
- compile 'io.grpc:grpc-netty:1.0.0 '
47
- compile 'io.grpc:grpc-protobuf:1.0.0 '
48
- compile 'io.grpc:grpc-stub:1.0.0 '
46
+ compile 'io.grpc:grpc-netty:1.0.1 '
47
+ compile 'io.grpc:grpc-protobuf:1.0.1 '
48
+ compile 'io.grpc:grpc-stub:1.0.1 '
49
49
```
50
50
51
51
For Android client, use ` grpc-okhttp ` instead of ` grpc-netty ` and
52
52
` grpc-protobuf-lite ` or ` grpc-protobuf-nano ` instead of ` grpc-protobuf ` :
53
53
``` gradle
54
- compile 'io.grpc:grpc-okhttp:1.0.0 '
55
- compile 'io.grpc:grpc-protobuf-lite:1.0.0 '
56
- compile 'io.grpc:grpc-stub:1.0.0 '
54
+ compile 'io.grpc:grpc-okhttp:1.0.1 '
55
+ compile 'io.grpc:grpc-protobuf-lite:1.0.1 '
56
+ compile 'io.grpc:grpc-stub:1.0.1 '
57
57
```
58
58
59
59
[ the JARs] :
60
- http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.0.0 %22
60
+ http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.0.1 %22
61
61
62
62
Development snapshots are available in [ Sonatypes's snapshot
63
63
repository] ( https://oss.sonatype.org/content/repositories/snapshots/ ) .
@@ -89,7 +89,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
89
89
-->
90
90
<protocArtifact >com.google.protobuf:protoc:3.0.0:exe:${os.detected.classifier}</protocArtifact >
91
91
<pluginId >grpc-java</pluginId >
92
- <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.0.0 :exe:${os.detected.classifier}</pluginArtifact >
92
+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.0.1 :exe:${os.detected.classifier}</pluginArtifact >
93
93
</configuration >
94
94
<executions >
95
95
<execution >
@@ -132,7 +132,7 @@ protobuf {
132
132
}
133
133
plugins {
134
134
grpc {
135
- artifact = 'io.grpc:protoc-gen-grpc-java:1.0.0 '
135
+ artifact = 'io.grpc:protoc-gen-grpc-java:1.0.1 '
136
136
}
137
137
}
138
138
generateProtoTasks {
0 commit comments