From 9826824b0ddc78e304a0005b9f4dd18754350869 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Thu, 18 Aug 2016 16:26:08 -0700 Subject: [PATCH] Bump version to 1.0.0 --- android-interop-testing/app/build.gradle | 10 +++++----- .../io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java | 2 +- .../io/grpc/benchmarks/proto/WorkerServiceGrpc.java | 2 +- 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 ++-- .../main/grpc/io/grpc/grpclb/LoadBalancerGrpc.java | 2 +- .../grpc/testing/integration/MetricsServiceGrpc.java | 2 +- .../grpc/testing/integration/ReconnectServiceGrpc.java | 2 +- .../io/grpc/testing/integration/TestServiceGrpc.java | 2 +- .../testing/integration/UnimplementedServiceGrpc.java | 2 +- .../main/grpc/io/grpc/health/v1/HealthGrpc.java | 2 +- 17 files changed, 28 insertions(+), 28 deletions(-) diff --git a/android-interop-testing/app/build.gradle b/android-interop-testing/app/build.gradle index 7ba44bbd5b1..d6fe374585d 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:1.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.0.0' // CURRENT_GRPC_VERSION } } generateProtoTasks { @@ -61,10 +61,10 @@ dependencies { compile 'com.google.guava:guava:18.0' compile 'com.squareup.okhttp:okhttp:2.2.0' // You need to build grpc-java to obtain these libraries below. - compile 'io.grpc:grpc-protobuf-nano:1.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-okhttp:1.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-testing:1.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-nano:1.0.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.0.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.0.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-testing:1.0.0' // CURRENT_GRPC_VERSION compile 'javax.annotation:javax.annotation-api:1.2' } diff --git a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java index 1cf8992d049..87dbf0da6e3 100644 --- a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java +++ b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java @@ -18,7 +18,7 @@ /** */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: services.proto") public class BenchmarkServiceGrpc { diff --git a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java index a17ba5dccfd..4a09d353e81 100644 --- a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java +++ b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java @@ -18,7 +18,7 @@ /** */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: services.proto") public class WorkerServiceGrpc { diff --git a/build.gradle b/build.gradle index 7642fcaf75d..5b2a11c7762 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ subprojects { apply plugin: "com.google.osdetector" group = "io.grpc" - version = "1.0.0-SNAPSHOT" // CURRENT_GRPC_VERSION + version = "1.0.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 04fa59f2eaa..4ec56f3850d 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.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: test.proto") public class TestServiceGrpc { diff --git a/compiler/src/testLite/golden/TestService.java.txt b/compiler/src/testLite/golden/TestService.java.txt index 0d322beb3a5..ed350a143bf 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.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: test.proto") public class TestServiceGrpc { diff --git a/compiler/src/testNano/golden/TestService.java.txt b/compiler/src/testNano/golden/TestService.java.txt index 2c6b6cf5f87..2b762add355 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.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: test.proto") public class TestServiceGrpc { diff --git a/examples/android/helloworld/app/build.gradle b/examples/android/helloworld/app/build.gradle index 0f00095d499..30067c43fa5 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.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.0.0' // CURRENT_GRPC_VERSION } } generateProtoTasks { @@ -57,8 +57,8 @@ dependencies { compile 'com.squareup.okhttp:okhttp:2.2.0' // You need to build grpc-java to obtain these libraries below. - compile 'io.grpc:grpc-okhttp:1.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-protobuf-lite:1.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.0.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-lite:1.0.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.0.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 77a8c793430..a4fe09d169a 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.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.1.0' // CURRENT_GRPC_VERSION } } generateProtoTasks { @@ -55,8 +55,8 @@ dependencies { compile 'com.squareup.okhttp:okhttp:2.2.0' // You need to build grpc-java to obtain these libraries below. - compile 'io.grpc:grpc-okhttp:1.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-protobuf-lite:1.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.1.0-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.1.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-lite:1.1.0' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.1.0' // CURRENT_GRPC_VERSION compile 'javax.annotation:javax.annotation-api:1.2' } diff --git a/examples/build.gradle b/examples/build.gradle index ec11ec81ff8..cee9d7c4ff1 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.0.0-SNAPSHOT' // CURRENT_GRPC_VERSION +def grpcVersion = '1.0.0' // CURRENT_GRPC_VERSION dependencies { compile "io.grpc:grpc-netty:${grpcVersion}" diff --git a/examples/pom.xml b/examples/pom.xml index b7f95b62ffd..0301b761960 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -6,11 +6,11 @@ jar - 1.0.0-SNAPSHOT + 1.0.0 examples http://maven.apache.org - 1.0.0-SNAPSHOT + 1.0.0 diff --git a/grpclb/src/generated/main/grpc/io/grpc/grpclb/LoadBalancerGrpc.java b/grpclb/src/generated/main/grpc/io/grpc/grpclb/LoadBalancerGrpc.java index 158483b1b0d..6efba81d3c4 100644 --- a/grpclb/src/generated/main/grpc/io/grpc/grpclb/LoadBalancerGrpc.java +++ b/grpclb/src/generated/main/grpc/io/grpc/grpclb/LoadBalancerGrpc.java @@ -18,7 +18,7 @@ /** */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: load_balancer.proto") public class LoadBalancerGrpc { diff --git a/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/MetricsServiceGrpc.java b/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/MetricsServiceGrpc.java index 2e2eb768402..05178f05aae 100644 --- a/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/MetricsServiceGrpc.java +++ b/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/MetricsServiceGrpc.java @@ -18,7 +18,7 @@ /** */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: io/grpc/testing/integration/metrics.proto") public class MetricsServiceGrpc { diff --git a/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/ReconnectServiceGrpc.java b/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/ReconnectServiceGrpc.java index f369c76d64a..7a2bfce3836 100644 --- a/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/ReconnectServiceGrpc.java +++ b/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/ReconnectServiceGrpc.java @@ -21,7 +21,7 @@ * */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: io/grpc/testing/integration/test.proto") public class ReconnectServiceGrpc { diff --git a/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/TestServiceGrpc.java b/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/TestServiceGrpc.java index bbd6113f042..4c08353fbba 100644 --- a/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/TestServiceGrpc.java +++ b/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/TestServiceGrpc.java @@ -22,7 +22,7 @@ * */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: io/grpc/testing/integration/test.proto") public class TestServiceGrpc { diff --git a/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/UnimplementedServiceGrpc.java b/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/UnimplementedServiceGrpc.java index 6694e5b31ed..229fd9ba963 100644 --- a/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/UnimplementedServiceGrpc.java +++ b/interop-testing/src/generated/main/grpc/io/grpc/testing/integration/UnimplementedServiceGrpc.java @@ -22,7 +22,7 @@ * */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: io/grpc/testing/integration/test.proto") public class UnimplementedServiceGrpc { diff --git a/services/src/generated/main/grpc/io/grpc/health/v1/HealthGrpc.java b/services/src/generated/main/grpc/io/grpc/health/v1/HealthGrpc.java index 99ac12c069e..be1c93cfad9 100644 --- a/services/src/generated/main/grpc/io/grpc/health/v1/HealthGrpc.java +++ b/services/src/generated/main/grpc/io/grpc/health/v1/HealthGrpc.java @@ -18,7 +18,7 @@ /** */ @javax.annotation.Generated( - value = "by gRPC proto compiler (version 1.0.0-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.0)", comments = "Source: health.proto") public class HealthGrpc {