Update README to reference 0.9.0

This commit is contained in:
Eric Anderson 2015-09-29 13:09:52 -07:00
parent 400926e4e8
commit 9ea70ad29c
1 changed files with 7 additions and 7 deletions

View File

@ -27,16 +27,16 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
<dependency> <dependency>
<groupId>io.grpc</groupId> <groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId> <artifactId>grpc-all</artifactId>
<version>0.8.0</version> <version>0.9.0</version>
</dependency> </dependency>
``` ```
Or for Gradle, add to your dependencies: Or for Gradle, add to your dependencies:
```gradle ```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 Development snapshots are available in [Sonatypes's snapshot
repository](https://oss.sonatype.org/content/repositories/snapshots/). 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 directly, you will be transitively depending on the
protobuf-java version that grpc depends on. protobuf-java version that grpc depends on.
--> -->
<protocArtifact>com.google.protobuf:protoc:3.0.0-alpha-3.1:exe:${os.detected.classifier}</protocArtifact> <protocArtifact>com.google.protobuf:protoc:3.0.0-beta-1:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId> <pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:0.8.0:exe:${os.detected.classifier}</pluginArtifact> <pluginArtifact>io.grpc:protoc-gen-grpc-java:0.9.0:exe:${os.detected.classifier}</pluginArtifact>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
@ -119,11 +119,11 @@ protobuf {
// The version of protoc must match protobuf-java. If you don't depend on // 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 directly, you will be transitively depending on the
// protobuf-java version that grpc depends on. // 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 { plugins {
grpc { grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:0.8.0' artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
} }
} }
generateProtoTasks { generateProtoTasks {