Skip to content

Commit 697756f

Browse files
committed
Update README to reference 1.0.1
1 parent 75863cd commit 697756f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -27,37 +27,37 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
2727
<dependency>
2828
<groupId>io.grpc</groupId>
2929
<artifactId>grpc-netty</artifactId>
30-
<version>1.0.0</version>
30+
<version>1.0.1</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>io.grpc</groupId>
3434
<artifactId>grpc-protobuf</artifactId>
35-
<version>1.0.0</version>
35+
<version>1.0.1</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>io.grpc</groupId>
3939
<artifactId>grpc-stub</artifactId>
40-
<version>1.0.0</version>
40+
<version>1.0.1</version>
4141
</dependency>
4242
```
4343

4444
Or for Gradle with non-Android, add to your dependencies:
4545
```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'
4949
```
5050

5151
For Android client, use `grpc-okhttp` instead of `grpc-netty` and
5252
`grpc-protobuf-lite` or `grpc-protobuf-nano` instead of `grpc-protobuf`:
5353
```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'
5757
```
5858

5959
[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
6161

6262
Development snapshots are available in [Sonatypes's snapshot
6363
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
8989
-->
9090
<protocArtifact>com.google.protobuf:protoc:3.0.0:exe:${os.detected.classifier}</protocArtifact>
9191
<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>
9393
</configuration>
9494
<executions>
9595
<execution>
@@ -132,7 +132,7 @@ protobuf {
132132
}
133133
plugins {
134134
grpc {
135-
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.0'
135+
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.1'
136136
}
137137
}
138138
generateProtoTasks {

0 commit comments

Comments
 (0)