Skip to content

Commit 8876de9

Browse files
Bump version to 1.0.2
1 parent 08a2106 commit 8876de9

File tree

18 files changed

+40
-40
lines changed

18 files changed

+40
-40
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,37 +27,37 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
2727
<dependency>
2828
<groupId>io.grpc</groupId>
2929
<artifactId>grpc-netty</artifactId>
30-
<version>1.0.1</version>
30+
<version>1.0.2</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>io.grpc</groupId>
3434
<artifactId>grpc-protobuf</artifactId>
35-
<version>1.0.1</version>
35+
<version>1.0.2</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>io.grpc</groupId>
3939
<artifactId>grpc-stub</artifactId>
40-
<version>1.0.1</version>
40+
<version>1.0.2</version>
4141
</dependency>
4242
```
4343

4444
Or for Gradle with non-Android, add to your dependencies:
4545
```gradle
46-
compile 'io.grpc:grpc-netty:1.0.1'
47-
compile 'io.grpc:grpc-protobuf:1.0.1'
48-
compile 'io.grpc:grpc-stub:1.0.1'
46+
compile 'io.grpc:grpc-netty:1.0.2'
47+
compile 'io.grpc:grpc-protobuf:1.0.2'
48+
compile 'io.grpc:grpc-stub:1.0.2'
4949
```
5050

5151
For Android client, use `grpc-okhttp` instead of `grpc-netty` and
5252
`grpc-protobuf-lite` or `grpc-protobuf-nano` instead of `grpc-protobuf`:
5353
```gradle
54-
compile 'io.grpc:grpc-okhttp:1.0.1'
55-
compile 'io.grpc:grpc-protobuf-lite:1.0.1'
56-
compile 'io.grpc:grpc-stub:1.0.1'
54+
compile 'io.grpc:grpc-okhttp:1.0.2'
55+
compile 'io.grpc:grpc-protobuf-lite:1.0.2'
56+
compile 'io.grpc:grpc-stub:1.0.2'
5757
```
5858

5959
[the JARs]:
60-
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.0.1%22
60+
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.0.2%22
6161

6262
Development snapshots are available in [Sonatypes's snapshot
6363
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
8989
-->
9090
<protocArtifact>com.google.protobuf:protoc:3.0.2:exe:${os.detected.classifier}</protocArtifact>
9191
<pluginId>grpc-java</pluginId>
92-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.1:exe:${os.detected.classifier}</pluginArtifact>
92+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.2:exe:${os.detected.classifier}</pluginArtifact>
9393
</configuration>
9494
<executions>
9595
<execution>
@@ -132,7 +132,7 @@ protobuf {
132132
}
133133
plugins {
134134
grpc {
135-
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.1'
135+
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2'
136136
}
137137
}
138138
generateProtoTasks {

android-interop-testing/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protobuf {
3232
}
3333
plugins {
3434
grpc {
35-
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -61,10 +61,10 @@ dependencies {
6161
compile 'com.google.guava:guava:18.0'
6262
compile 'com.squareup.okhttp:okhttp:2.2.0'
6363
// You need to build grpc-java to obtain these libraries below.
64-
compile 'io.grpc:grpc-protobuf-nano:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
65-
compile 'io.grpc:grpc-okhttp:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
66-
compile 'io.grpc:grpc-stub:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
67-
compile 'io.grpc:grpc-testing:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
64+
compile 'io.grpc:grpc-protobuf-nano:1.0.2' // CURRENT_GRPC_VERSION
65+
compile 'io.grpc:grpc-okhttp:1.0.2' // CURRENT_GRPC_VERSION
66+
compile 'io.grpc:grpc-stub:1.0.2' // CURRENT_GRPC_VERSION
67+
compile 'io.grpc:grpc-testing:1.0.2' // CURRENT_GRPC_VERSION
6868
compile 'javax.annotation:javax.annotation-api:1.2'
6969
}
7070

benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
*/
2020
@javax.annotation.Generated(
21-
value = "by gRPC proto compiler (version 1.0.2-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.0.2)",
2222
comments = "Source: services.proto")
2323
public class BenchmarkServiceGrpc {
2424

benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
*/
2020
@javax.annotation.Generated(
21-
value = "by gRPC proto compiler (version 1.0.2-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.0.2)",
2222
comments = "Source: services.proto")
2323
public class WorkerServiceGrpc {
2424

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ subprojects {
1919
apply plugin: "com.google.osdetector"
2020

2121
group = "io.grpc"
22-
version = "1.0.2-SNAPSHOT" // CURRENT_GRPC_VERSION
22+
version = "1.0.2" // CURRENT_GRPC_VERSION
2323

2424
sourceCompatibility = 1.6
2525
targetCompatibility = 1.6

compiler/src/test/golden/TestService.java.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall;
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 1.0.2-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.0.2)",
2525
comments = "Source: test.proto")
2626
public class TestServiceGrpc {
2727

compiler/src/testLite/golden/TestService.java.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import static io.grpc.stub.ServerCalls.asyncUnimplementedStreamingCall;
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 1.0.2-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.0.2)",
2525
comments = "Source: test.proto")
2626
public class TestServiceGrpc {
2727

compiler/src/testNano/golden/TestService.java.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import java.io.IOException;
2323
* </pre>
2424
*/
2525
@javax.annotation.Generated(
26-
value = "by gRPC proto compiler (version 1.0.2-SNAPSHOT)",
26+
value = "by gRPC proto compiler (version 1.0.2)",
2727
comments = "Source: test.proto")
2828
public class TestServiceGrpc {
2929

examples/android/helloworld/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protobuf {
3434
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
3535
}
3636
grpc {
37-
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
37+
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2' // CURRENT_GRPC_VERSION
3838
}
3939
}
4040
generateProtoTasks {
@@ -57,8 +57,8 @@ dependencies {
5757
compile 'com.squareup.okhttp:okhttp:2.2.0'
5858

5959
// You need to build grpc-java to obtain these libraries below.
60-
compile 'io.grpc:grpc-okhttp:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
61-
compile 'io.grpc:grpc-protobuf-lite:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
62-
compile 'io.grpc:grpc-stub:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
60+
compile 'io.grpc:grpc-okhttp:1.0.2' // CURRENT_GRPC_VERSION
61+
compile 'io.grpc:grpc-protobuf-lite:1.0.2' // CURRENT_GRPC_VERSION
62+
compile 'io.grpc:grpc-stub:1.0.2' // CURRENT_GRPC_VERSION
6363
compile 'javax.annotation:javax.annotation-api:1.2'
6464
}

examples/android/routeguide/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protobuf {
3232
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
3333
}
3434
grpc {
35-
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
artifact = 'io.grpc:protoc-gen-grpc-java:1.0.2' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -55,8 +55,8 @@ dependencies {
5555
compile 'com.squareup.okhttp:okhttp:2.2.0'
5656

5757
// You need to build grpc-java to obtain these libraries below.
58-
compile 'io.grpc:grpc-okhttp:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
59-
compile 'io.grpc:grpc-protobuf-lite:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
60-
compile 'io.grpc:grpc-stub:1.0.2-SNAPSHOT' // CURRENT_GRPC_VERSION
58+
compile 'io.grpc:grpc-okhttp:1.0.2' // CURRENT_GRPC_VERSION
59+
compile 'io.grpc:grpc-protobuf-lite:1.0.2' // CURRENT_GRPC_VERSION
60+
compile 'io.grpc:grpc-stub:1.0.2' // CURRENT_GRPC_VERSION
6161
compile 'javax.annotation:javax.annotation-api:1.2'
6262
}

0 commit comments

Comments
 (0)