aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2016-01-22 14:18:40 -0800
committerEric Anderson <ejona@google.com>2016-01-22 14:32:57 -0800
commit67d9e2686240726ea90144e0dccbb74ebabed0ba (patch)
tree704b5126f11ba6d338420182bc45f7bf6feef0a7
parent2a43827be23524677b0b367f34dba2db5bd0a0ed (diff)
downloadgrpc-grpc-java-upstream/v0.12.0.tar.gz
Bump version to v0.12.0upstream/v0.12.0
-rw-r--r--README.md16
-rw-r--r--android-interop-testing/app/build.gradle10
-rw-r--r--build.gradle2
-rw-r--r--examples/android/app/build.gradle8
4 files changed, 18 insertions, 18 deletions
diff --git a/README.md b/README.md
index d8f4614ef..edcf97b67 100644
--- a/README.md
+++ b/README.md
@@ -27,23 +27,23 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
- <version>0.9.0</version>
+ <version>0.12.0</version>
</dependency>
```
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
-->
<protocArtifact>com.google.protobuf:protoc:3.0.0-beta-1:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
- <pluginArtifact>io.grpc:protoc-gen-grpc-java:0.9.0:exe:${os.detected.classifier}</pluginArtifact>
+ <pluginArtifact>io.grpc:protoc-gen-grpc-java:0.12.0:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
@@ -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 a195e5d28..71beac1f9 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 cf2d6ad5b..5556e46be 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 30dcd733c..de3cec183 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'
}