aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornmittler <nathanmittler@google.com>2015-07-13 09:05:45 -0700
committernmittler <nathanmittler@google.com>2015-07-13 09:05:45 -0700
commita0060c8e2cb6699d37d8762f60067af337230dcb (patch)
tree4f7820540e7acd8d0c1d543f326a22f042ba7b31
parent7ae41583d88e6e3b64cfb4d9f4acd55101819f20 (diff)
downloadgrpc-grpc-java-a0060c8e2cb6699d37d8762f60067af337230dcb.tar.gz
Updating version to 0.7.2upstream/v0.7.2
-rw-r--r--README.md10
-rw-r--r--build.gradle2
2 files changed, 6 insertions, 6 deletions
diff --git a/README.md b/README.md
index c5c161934..4f0df68c0 100644
--- a/README.md
+++ b/README.md
@@ -15,16 +15,16 @@ Download [the JAR][]. Or for Maven, add to your `pom.xml`:
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
- <version>0.7.1</version>
+ <version>0.7.2</version>
</dependency>
```
Or for Gradle, add to your dependencies:
```gradle
-compile 'io.grpc:grpc-all:0.7.1'
+compile 'io.grpc:grpc-all:0.7.2'
```
-[the JAR]: https://search.maven.org/remote_content?g=io.grpc&a=grpc-all&v=0.7.1
+[the JAR]: https://search.maven.org/remote_content?g=io.grpc&a=grpc-all&v=0.7.2
Development snapshots are available in [Sonatypes's snapshot
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -48,7 +48,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.0.0-alpha-2:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
- <pluginArtifact>io.grpc:protoc-gen-grpc-java:0.7.1:exe:${os.detected.classifier}</pluginArtifact>
+ <pluginArtifact>io.grpc:protoc-gen-grpc-java:0.7.2:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
@@ -90,7 +90,7 @@ sourceSets {
}
protocDep = "com.google.protobuf:protoc:3.0.0-alpha-2"
-protobufNativeCodeGenPluginDeps = ["grpc:io.grpc:protoc-gen-grpc-java:0.7.1"]
+protobufNativeCodeGenPluginDeps = ["grpc:io.grpc:protoc-gen-grpc-java:0.7.2"]
```
[protobuf-gradle-plugin]: https://github.com/google/protobuf-gradle-plugin
diff --git a/build.gradle b/build.gradle
index ae6290818..46b3f14c5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -18,7 +18,7 @@ subprojects {
apply plugin: "jacoco"
group = "io.grpc"
- version = "0.7.2-SNAPSHOT"
+ version = "0.7.2"
sourceCompatibility = 1.6
targetCompatibility = 1.6