From 65ae83e479c26c1a7adef6ca4cfd9ce7b738a19e Mon Sep 17 00:00:00 2001 From: dapengzhang0 Date: Tue, 10 Oct 2017 13:19:10 -0700 Subject: [PATCH] Bump version to 1.7.0 --- android-interop-testing/app/build.gradle | 10 +++++----- build.gradle | 2 +- compiler/src/test/golden/TestService.java.txt | 2 +- compiler/src/testLite/golden/TestService.java.txt | 2 +- compiler/src/testNano/golden/TestService.java.txt | 2 +- examples/android/helloworld/app/build.gradle | 8 ++++---- examples/android/routeguide/app/build.gradle | 8 ++++---- examples/build.gradle | 2 +- examples/pom.xml | 4 ++-- examples/thrift/build.gradle | 2 +- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/android-interop-testing/app/build.gradle b/android-interop-testing/app/build.gradle index 8555eb6b273..1206f0e679d 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:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.7.0' // CURRENT_GRPC_VERSION } } generateProtoTasks { @@ -61,10 +61,10 @@ dependencies { compile 'com.android.support:support-annotations:23.1.1' compile 'com.google.android.gms:play-services-base:7.3.0' // You need to build grpc-java to obtain the grpc libraries below. - compile 'io.grpc:grpc-protobuf-nano:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-okhttp:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-testing:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-nano:1.7.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.7.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.7.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-testing:1.7.0' // CURRENT_GRPC_VERSION compile 'javax.annotation:javax.annotation-api:1.2' compile 'junit:junit:4.12' diff --git a/build.gradle b/build.gradle index 0aba829bea3..2f0c387ceb3 100644 --- a/build.gradle +++ b/build.gradle @@ -50,7 +50,7 @@ subprojects { idea.module.inheritOutputDirs = true group = "io.grpc" - version = "1.7.0-SNAPSHOT" // CURRENT_GRPC_VERSION + version = "1.7.0" // CURRENT_GRPC_VERSION sourceCompatibility = 1.6 targetCompatibility = 1.6 diff --git a/compiler/src/test/golden/TestService.java.txt b/compiler/src/test/golden/TestService.java.txt index 49b6455515d..9d7ce8402e6 100644 --- a/compiler/src/test/golden/TestService.java.txt +++ b/compiler/src/test/golden/TestService.java.txt @@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall; * */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.7.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.7.0)", comments = "Source: test.proto") public final class TestServiceGrpc { diff --git a/compiler/src/testLite/golden/TestService.java.txt b/compiler/src/testLite/golden/TestService.java.txt index 6275acb166b..dd95f519f59 100644 --- a/compiler/src/testLite/golden/TestService.java.txt +++ b/compiler/src/testLite/golden/TestService.java.txt @@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall; * */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.7.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.7.0)", comments = "Source: test.proto") public final class TestServiceGrpc { diff --git a/compiler/src/testNano/golden/TestService.java.txt b/compiler/src/testNano/golden/TestService.java.txt index b9748fc27f9..a7bf6488c89 100644 --- a/compiler/src/testNano/golden/TestService.java.txt +++ b/compiler/src/testNano/golden/TestService.java.txt @@ -23,7 +23,7 @@ import java.io.IOException; * */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.7.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.7.0)", comments = "Source: test.proto") public final class TestServiceGrpc { diff --git a/examples/android/helloworld/app/build.gradle b/examples/android/helloworld/app/build.gradle index a848ff77e59..566c081f3c4 100644 --- a/examples/android/helloworld/app/build.gradle +++ b/examples/android/helloworld/app/build.gradle @@ -34,7 +34,7 @@ protobuf { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" } grpc { - artifact = 'io.grpc:protoc-gen-grpc-java:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.7.0' // CURRENT_GRPC_VERSION } } generateProtoTasks { @@ -54,8 +54,8 @@ dependencies { compile 'com.android.support:appcompat-v7:22.1.1' // You need to build grpc-java to obtain these libraries below. - compile 'io.grpc:grpc-okhttp:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-protobuf-lite:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.7.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-lite:1.7.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.7.0' // CURRENT_GRPC_VERSION compile 'javax.annotation:javax.annotation-api:1.2' } diff --git a/examples/android/routeguide/app/build.gradle b/examples/android/routeguide/app/build.gradle index d4eb50df8d0..8ba38ab2c83 100644 --- a/examples/android/routeguide/app/build.gradle +++ b/examples/android/routeguide/app/build.gradle @@ -32,7 +32,7 @@ protobuf { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" } grpc { - artifact = 'io.grpc:protoc-gen-grpc-java:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.7.0' // CURRENT_GRPC_VERSION } } generateProtoTasks { @@ -52,8 +52,8 @@ dependencies { compile 'com.android.support:appcompat-v7:23.+' // You need to build grpc-java to obtain these libraries below. - compile 'io.grpc:grpc-okhttp:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-protobuf-lite:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.7.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-lite:1.7.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.7.0' // CURRENT_GRPC_VERSION compile 'javax.annotation:javax.annotation-api:1.2' } diff --git a/examples/build.gradle b/examples/build.gradle index b2eafc8cdae..ef5e4749809 100644 --- a/examples/build.gradle +++ b/examples/build.gradle @@ -22,7 +22,7 @@ repositories { // Feel free to delete the comment at the next line. It is just for safely // updating the version in our release process. -def grpcVersion = '1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION +def grpcVersion = '1.7.0' // CURRENT_GRPC_VERSION dependencies { compile "com.google.api.grpc:proto-google-common-protos:0.1.9" diff --git a/examples/pom.xml b/examples/pom.xml index ad67ff1bf93..967484adda9 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -6,12 +6,12 @@ jar - 1.7.0-SNAPSHOT + 1.7.0 examples http://maven.apache.org UTF-8 - 1.7.0-SNAPSHOT + 1.7.0 diff --git a/examples/thrift/build.gradle b/examples/thrift/build.gradle index 36e8a394d7a..b2a658a2111 100644 --- a/examples/thrift/build.gradle +++ b/examples/thrift/build.gradle @@ -12,7 +12,7 @@ repositories { // Feel free to delete the comment at the next line. It is just for safely // updating the version in our release process. -def grpcVersion = '1.7.0-SNAPSHOT' // CURRENT_GRPC_VERSION +def grpcVersion = '1.7.0' // CURRENT_GRPC_VERSION dependencies { compile "io.grpc:grpc-stub:${grpcVersion}"