Skip to content

Commit 0ad2d8b

Browse files
all: bump version to 1.2.0
1 parent 2c4d8ee commit 0ad2d8b

File tree

24 files changed

+46
-46
lines changed

24 files changed

+46
-46
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,37 +28,37 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
2828
<dependency>
2929
<groupId>io.grpc</groupId>
3030
<artifactId>grpc-netty</artifactId>
31-
<version>1.1.2</version>
31+
<version>1.2.0</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>io.grpc</groupId>
3535
<artifactId>grpc-protobuf</artifactId>
36-
<version>1.1.2</version>
36+
<version>1.2.0</version>
3737
</dependency>
3838
<dependency>
3939
<groupId>io.grpc</groupId>
4040
<artifactId>grpc-stub</artifactId>
41-
<version>1.1.2</version>
41+
<version>1.2.0</version>
4242
</dependency>
4343
```
4444

4545
Or for Gradle with non-Android, add to your dependencies:
4646
```gradle
47-
compile 'io.grpc:grpc-netty:1.1.2'
48-
compile 'io.grpc:grpc-protobuf:1.1.2'
49-
compile 'io.grpc:grpc-stub:1.1.2'
47+
compile 'io.grpc:grpc-netty:1.2.0'
48+
compile 'io.grpc:grpc-protobuf:1.2.0'
49+
compile 'io.grpc:grpc-stub:1.2.0'
5050
```
5151

5252
For Android client, use `grpc-okhttp` instead of `grpc-netty` and
5353
`grpc-protobuf-lite` or `grpc-protobuf-nano` instead of `grpc-protobuf`:
5454
```gradle
55-
compile 'io.grpc:grpc-okhttp:1.1.2'
56-
compile 'io.grpc:grpc-protobuf-lite:1.1.2'
57-
compile 'io.grpc:grpc-stub:1.1.2'
55+
compile 'io.grpc:grpc-okhttp:1.2.0'
56+
compile 'io.grpc:grpc-protobuf-lite:1.2.0'
57+
compile 'io.grpc:grpc-stub:1.2.0'
5858
```
5959

6060
[the JARs]:
61-
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.1.2%22
61+
http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.grpc%22%20AND%20v%3A%221.2.0%22
6262

6363
Development snapshots are available in [Sonatypes's snapshot
6464
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -87,7 +87,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
8787
<configuration>
8888
<protocArtifact>com.google.protobuf:protoc:3.0.2:exe:${os.detected.classifier}</protocArtifact>
8989
<pluginId>grpc-java</pluginId>
90-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.1.2:exe:${os.detected.classifier}</pluginArtifact>
90+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.2.0:exe:${os.detected.classifier}</pluginArtifact>
9191
</configuration>
9292
<executions>
9393
<execution>
@@ -127,7 +127,7 @@ protobuf {
127127
}
128128
plugins {
129129
grpc {
130-
artifact = 'io.grpc:protoc-gen-grpc-java:1.1.2'
130+
artifact = 'io.grpc:protoc-gen-grpc-java:1.2.0'
131131
}
132132
}
133133
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.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
artifact = 'io.grpc:protoc-gen-grpc-java:1.2.0' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -58,10 +58,10 @@ dependencies {
5858
compile 'com.android.support:appcompat-v7:22.1.1'
5959
compile 'com.google.android.gms:play-services-base:7.3.0'
6060
// You need to build grpc-java to obtain these libraries below.
61-
compile 'io.grpc:grpc-protobuf-nano:1.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
62-
compile 'io.grpc:grpc-okhttp:1.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
63-
compile 'io.grpc:grpc-stub:1.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
64-
compile 'io.grpc:grpc-testing:1.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
61+
compile 'io.grpc:grpc-protobuf-nano:1.2.0' // CURRENT_GRPC_VERSION
62+
compile 'io.grpc:grpc-okhttp:1.2.0' // CURRENT_GRPC_VERSION
63+
compile 'io.grpc:grpc-stub:1.2.0' // CURRENT_GRPC_VERSION
64+
compile 'io.grpc:grpc-testing:1.2.0' // CURRENT_GRPC_VERSION
6565
compile 'javax.annotation:javax.annotation-api:1.2'
6666
}
6767

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.2.0-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.2.0)",
2222
comments = "Source: services.proto")
2323
public final 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.2.0-SNAPSHOT)",
21+
value = "by gRPC proto compiler (version 1.2.0)",
2222
comments = "Source: services.proto")
2323
public final class WorkerServiceGrpc {
2424

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ subprojects {
2929
}
3030

3131
group = "io.grpc"
32-
version = "1.2.0-SNAPSHOT" // CURRENT_GRPC_VERSION
32+
version = "1.2.0" // CURRENT_GRPC_VERSION
3333

3434
sourceCompatibility = 1.6
3535
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.2.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.2.0)",
2525
comments = "Source: test.proto")
2626
public final 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.2.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.2.0)",
2525
comments = "Source: test.proto")
2626
public final 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.2.0-SNAPSHOT)",
26+
value = "by gRPC proto compiler (version 1.2.0)",
2727
comments = "Source: test.proto")
2828
public final 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.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
37+
artifact = 'io.grpc:protoc-gen-grpc-java:1.2.0' // CURRENT_GRPC_VERSION
3838
}
3939
}
4040
generateProtoTasks {
@@ -54,8 +54,8 @@ dependencies {
5454
compile 'com.android.support:appcompat-v7:22.1.1'
5555

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

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.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
artifact = 'io.grpc:protoc-gen-grpc-java:1.2.0' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -52,8 +52,8 @@ dependencies {
5252
compile 'com.android.support:appcompat-v7:23.+'
5353

5454
// You need to build grpc-java to obtain these libraries below.
55-
compile 'io.grpc:grpc-okhttp:1.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
compile 'io.grpc:grpc-protobuf-lite:1.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
compile 'io.grpc:grpc-stub:1.2.0-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
compile 'io.grpc:grpc-okhttp:1.2.0' // CURRENT_GRPC_VERSION
56+
compile 'io.grpc:grpc-protobuf-lite:1.2.0' // CURRENT_GRPC_VERSION
57+
compile 'io.grpc:grpc-stub:1.2.0' // CURRENT_GRPC_VERSION
5858
compile 'javax.annotation:javax.annotation-api:1.2'
5959
}

0 commit comments

Comments
 (0)