diff --git a/README.md b/README.md
index 9d405bc8c02..6e31c8ca15e 100644
--- a/README.md
+++ b/README.md
@@ -16,16 +16,16 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
io.grpc
grpc-all
- 0.9.0
+ 0.9.1
```
Or for Gradle, add to your dependencies:
```gradle
-compile 'io.grpc:grpc-all:0.9.0'
+compile 'io.grpc:grpc-all:0.9.1'
```
-[the JAR]: https://search.maven.org/remote_content?g=io.grpc&a=grpc-all&v=0.9.0
+[the JAR]: https://search.maven.org/remote_content?g=io.grpc&a=grpc-all&v=0.9.1
Development snapshots are available in [Sonatypes's snapshot
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -71,7 +71,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
-->
com.google.protobuf:protoc:3.0.0-beta-1:exe:${os.detected.classifier}
grpc-java
- io.grpc:protoc-gen-grpc-java:0.9.0:exe:${os.detected.classifier}
+ io.grpc:protoc-gen-grpc-java:0.9.1:exe:${os.detected.classifier}
@@ -112,7 +112,7 @@ protobuf {
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
+ artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1'
}
}
generateProtoTasks {
diff --git a/android-interop-testing/app/build.gradle b/android-interop-testing/app/build.gradle
index d86fc6f124a..8121ea8151b 100644
--- a/android-interop-testing/app/build.gradle
+++ b/android-interop-testing/app/build.gradle
@@ -33,7 +33,7 @@ protobuf {
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1-SNAPSHOT'
+ artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1'
}
}
generateProtoTasks {
@@ -64,10 +64,10 @@ dependencies {
compile 'com.squareup.okhttp:okhttp:2.2.0'
testCompile 'junit:junit:4.12'
// You need to build grpc-java to obtain these libraries below.
- compile 'io.grpc:grpc-core:0.9.1-SNAPSHOT'
- compile 'io.grpc:grpc-protobuf-nano:0.9.1-SNAPSHOT'
- compile 'io.grpc:grpc-okhttp:0.9.1-SNAPSHOT'
- compile 'io.grpc:grpc-stub:0.9.1-SNAPSHOT'
- compile 'io.grpc:grpc-testing:0.9.1-SNAPSHOT'
+ compile 'io.grpc:grpc-core:0.9.1'
+ compile 'io.grpc:grpc-protobuf-nano:0.9.1'
+ compile 'io.grpc:grpc-okhttp:0.9.1'
+ compile 'io.grpc:grpc-stub:0.9.1'
+ compile 'io.grpc:grpc-testing:0.9.1'
compile 'javax.annotation:javax.annotation-api:1.2'
}
diff --git a/build.gradle b/build.gradle
index be812d391a0..cf02c5b6313 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,7 +19,7 @@ subprojects {
apply plugin: "com.google.osdetector"
group = "io.grpc"
- version = "0.9.1-SNAPSHOT"
+ version = "0.9.1"
sourceCompatibility = 1.6
targetCompatibility = 1.6
diff --git a/examples/android/app/build.gradle b/examples/android/app/build.gradle
index b8217166003..4a500e95ab9 100644
--- a/examples/android/app/build.gradle
+++ b/examples/android/app/build.gradle
@@ -29,7 +29,7 @@ protobuf {
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
+ artifact = 'io.grpc:protoc-gen-grpc-java:0.9.1'
}
}
generateProtoTasks {
@@ -60,8 +60,8 @@ dependencies {
// You need to build the https://github.com/grpc/grpc-java
// to obtain these libraries below.
- compile 'io.grpc:grpc-core:0.9.0'
- compile 'io.grpc:grpc-protobuf-nano:0.9.0'
- compile 'io.grpc:grpc-okhttp:0.9.0'
- compile 'io.grpc:grpc-stub:0.9.0'
+ compile 'io.grpc:grpc-core:0.9.1'
+ compile 'io.grpc:grpc-protobuf-nano:0.9.1'
+ compile 'io.grpc:grpc-okhttp:0.9.1'
+ compile 'io.grpc:grpc-stub:0.9.1'
}