diff --git a/README.md b/README.md index 5bc9cc67f75..2329cd1b0d3 100644 --- a/README.md +++ b/README.md @@ -27,37 +27,37 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`: io.grpc grpc-netty - 1.0.1 + 1.0.2 io.grpc grpc-protobuf - 1.0.1 + 1.0.2 io.grpc grpc-stub - 1.0.1 + 1.0.2 ``` Or for Gradle with non-Android, add to your dependencies: ```gradle -compile 'io.grpc:grpc-netty:1.0.1' -compile 'io.grpc:grpc-protobuf:1.0.1' -compile 'io.grpc:grpc-stub:1.0.1' +compile 'io.grpc:grpc-netty:1.0.2' +compile 'io.grpc:grpc-protobuf:1.0.2' +compile 'io.grpc:grpc-stub:1.0.2' ``` For Android client, use `grpc-okhttp` instead of `grpc-netty` and `grpc-protobuf-lite` or `grpc-protobuf-nano` instead of `grpc-protobuf`: ```gradle -compile 'io.grpc:grpc-okhttp:1.0.1' -compile 'io.grpc:grpc-protobuf-lite:1.0.1' -compile 'io.grpc:grpc-stub:1.0.1' +compile 'io.grpc:grpc-okhttp:1.0.2' +compile 'io.grpc:grpc-protobuf-lite:1.0.2' +compile 'io.grpc:grpc-stub:1.0.2' ``` [the JARs]: -http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.0.1%22 +http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.0.2%22 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.2:exe:${os.detected.classifier} grpc-java - io.grpc:protoc-gen-grpc-java:1.0.1:exe:${os.detected.classifier} + io.grpc:protoc-gen-grpc-java:1.0.2:exe:${os.detected.classifier} @@ -132,7 +132,7 @@ protobuf { } plugins { grpc { - artifact = 'io.grpc:protoc-gen-grpc-java:1.0.1' + artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2' } } generateProtoTasks { diff --git a/android-interop-testing/app/build.gradle b/android-interop-testing/app/build.gradle index 11809a7c41f..fa3470a7ccd 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.2-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2' // 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.2-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-okhttp:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-testing:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-nano:1.0.2' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.0.2' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.0.2' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-testing:1.0.2' // 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 214f086964f..48eebf05ea1 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", 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 0eb86ebd217..79ee5c820e5 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", comments = "Source: services.proto") public class WorkerServiceGrpc { diff --git a/build.gradle b/build.gradle index fdc30d42a04..d9056718575 100644 --- a/build.gradle +++ b/build.gradle @@ -19,7 +19,7 @@ subprojects { apply plugin: "com.google.osdetector" group = "io.grpc" - version = "1.0.2-SNAPSHOT" // CURRENT_GRPC_VERSION + version = "1.0.2" // 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 31b093a996a..b6e77a2cf61 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", 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 633e57e09ac..b19f7b857de 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", 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 8f72a05b1e9..4eb12fb7a31 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", comments = "Source: test.proto") public class TestServiceGrpc { diff --git a/examples/android/helloworld/app/build.gradle b/examples/android/helloworld/app/build.gradle index b8c44711792..338c80c003c 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.2-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2' // 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.2-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-protobuf-lite:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.0.2' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-lite:1.0.2' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.0.2' // 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 90292d2d995..d01d78d27cd 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.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION + artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2' // 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.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-protobuf-lite:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION - compile 'io.grpc:grpc-stub:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-okhttp:1.0.2' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-protobuf-lite:1.0.2' // CURRENT_GRPC_VERSION + compile 'io.grpc:grpc-stub:1.0.2' // CURRENT_GRPC_VERSION compile 'javax.annotation:javax.annotation-api:1.2' } diff --git a/examples/build.gradle b/examples/build.gradle index 18e04228928..700ca2b0c58 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.2-SNAPSHOT' // CURRENT_GRPC_VERSION +def grpcVersion = '1.0.2' // CURRENT_GRPC_VERSION dependencies { compile "io.grpc:grpc-netty:${grpcVersion}" diff --git a/examples/pom.xml b/examples/pom.xml index 5c6bc1651a3..31b26492a7b 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -6,11 +6,11 @@ jar - 1.0.2-SNAPSHOT + 1.0.2 examples http://maven.apache.org - 1.0.2-SNAPSHOT + 1.0.2 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 91b1f382349..27fec4fee5c 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", 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 45354643646..bba19abe858 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", 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 fed3f6b9205..07df5650981 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", 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 02849fc406d..c65c959d117 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", 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 69d0d7d983b..238e44dc493 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", 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 54215ed385f..bb0c941523e 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.2-SNAPSHOT)", + value = "by gRPC proto compiler (version 1.0.2)", comments = "Source: health.proto") public class HealthGrpc {