diff --git a/README.md b/README.md
index b759cd931b..46b295edbd 100644
--- a/README.md
+++ b/README.md
@@ -27,16 +27,16 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
io.grpc
grpc-all
- 0.8.0
+ 0.9.0
```
Or for Gradle, add to your dependencies:
```gradle
-compile 'io.grpc:grpc-all:0.8.0'
+compile 'io.grpc:grpc-all:0.9.0'
```
-[the JAR]: https://search.maven.org/remote_content?g=io.grpc&a=grpc-all&v=0.8.0
+[the JAR]: https://search.maven.org/remote_content?g=io.grpc&a=grpc-all&v=0.9.0
Development snapshots are available in [Sonatypes's snapshot
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -80,9 +80,9 @@ For protobuf-based codegen integrated with the Maven build system, you can use
protobuf-java directly, you will be transitively depending on the
protobuf-java version that grpc depends on.
-->
- com.google.protobuf:protoc:3.0.0-alpha-3.1:exe:${os.detected.classifier}
+ com.google.protobuf:protoc:3.0.0-beta-1:exe:${os.detected.classifier}
grpc-java
- io.grpc:protoc-gen-grpc-java:0.8.0:exe:${os.detected.classifier}
+ io.grpc:protoc-gen-grpc-java:0.9.0:exe:${os.detected.classifier}
@@ -119,11 +119,11 @@ protobuf {
// The version of protoc must match protobuf-java. If you don't depend on
// protobuf-java directly, you will be transitively depending on the
// protobuf-java version that grpc depends on.
- artifact = "com.google.protobuf:protoc:3.0.0-alpha-3.1"
+ artifact = "com.google.protobuf:protoc:3.0.0-beta-1"
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:0.8.0'
+ artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
}
}
generateProtoTasks {