diff --git a/README.md b/README.md
index d8f4614ef7e..edcf97b67c6 100644
--- a/README.md
+++ b/README.md
@@ -27,23 +27,23 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
io.grpc
grpc-all
- 0.9.0
+ 0.12.0
```
Or for Gradle, add to your dependencies:
```gradle
-compile 'io.grpc:grpc-all:0.9.0'
+compile 'io.grpc:grpc-all:0.12.0'
```
For Android client, you only need to depend on the needed sub-projects, such as:
```gradle
-compile 'io.grpc:grpc-okhttp:0.9.0'
-compile 'io.grpc:grpc-protobuf-nano:0.9.0'
-compile 'io.grpc:grpc-stub:0.9.0'
+compile 'io.grpc:grpc-okhttp:0.12.0'
+compile 'io.grpc:grpc-protobuf-nano:0.12.0'
+compile 'io.grpc:grpc-stub:0.12.0'
```
-[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.12.0
Development snapshots are available in [Sonatypes's snapshot
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
-->
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.12.0:exe:${os.detected.classifier}
@@ -130,7 +130,7 @@ protobuf {
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:0.9.0'
+ artifact = 'io.grpc:protoc-gen-grpc-java:0.12.0'
}
}
generateProtoTasks {
diff --git a/android-interop-testing/app/build.gradle b/android-interop-testing/app/build.gradle
index a195e5d2823..71beac1f943 100644
--- a/android-interop-testing/app/build.gradle
+++ b/android-interop-testing/app/build.gradle
@@ -32,7 +32,7 @@ protobuf {
}
plugins {
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:0.10.0-SNAPSHOT'
+ artifact = 'io.grpc:protoc-gen-grpc-java:0.12.0'
}
}
generateProtoTasks {
@@ -63,9 +63,9 @@ 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-protobuf-nano:0.10.0-SNAPSHOT'
- compile 'io.grpc:grpc-okhttp:0.10.0-SNAPSHOT'
- compile 'io.grpc:grpc-stub:0.10.0-SNAPSHOT'
- compile 'io.grpc:grpc-testing:0.10.0-SNAPSHOT'
+ compile 'io.grpc:grpc-protobuf-nano:0.12.0'
+ compile 'io.grpc:grpc-okhttp:0.12.0'
+ compile 'io.grpc:grpc-stub:0.12.0'
+ compile 'io.grpc:grpc-testing:0.12.0'
compile 'javax.annotation:javax.annotation-api:1.2'
}
diff --git a/build.gradle b/build.gradle
index cf2d6ad5b45..5556e46be64 100644
--- a/build.gradle
+++ b/build.gradle
@@ -19,7 +19,7 @@ subprojects {
apply plugin: "com.google.osdetector"
group = "io.grpc"
- version = "0.10.0-SNAPSHOT"
+ version = "0.12.0"
sourceCompatibility = 1.6
targetCompatibility = 1.6
diff --git a/examples/android/app/build.gradle b/examples/android/app/build.gradle
index 30dcd733c3f..de3cec18346 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.12.0'
}
}
generateProtoTasks {
@@ -60,7 +60,7 @@ dependencies {
// You need to build the https://github.com/grpc/grpc-java
// to obtain these libraries below.
- 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-protobuf-nano:0.12.0'
+ compile 'io.grpc:grpc-okhttp:0.12.0'
+ compile 'io.grpc:grpc-stub:0.12.0'
}