Skip to content

Commit 61f2528

Browse files
committed
Bump version to 1.12.0
1 parent ee62304 commit 61f2528

File tree

13 files changed

+31
-31
lines changed

13 files changed

+31
-31
lines changed

android-interop-testing/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protobuf {
3434
}
3535
plugins {
3636
grpc {
37-
artifact = 'io.grpc:protoc-gen-grpc-java:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
37+
artifact = 'io.grpc:protoc-gen-grpc-java:1.12.0' // CURRENT_GRPC_VERSION
3838
}
3939
}
4040
generateProtoTasks {
@@ -62,10 +62,10 @@ dependencies {
6262
compile 'com.android.support:support-annotations:23.1.1'
6363
compile 'com.google.android.gms:play-services-base:7.3.0'
6464
// You need to build grpc-java to obtain the grpc libraries below.
65-
compile 'io.grpc:grpc-protobuf-nano:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
66-
compile 'io.grpc:grpc-okhttp:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
67-
compile 'io.grpc:grpc-stub:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
68-
compile 'io.grpc:grpc-testing:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
65+
compile 'io.grpc:grpc-protobuf-nano:1.12.0' // CURRENT_GRPC_VERSION
66+
compile 'io.grpc:grpc-okhttp:1.12.0' // CURRENT_GRPC_VERSION
67+
compile 'io.grpc:grpc-stub:1.12.0' // CURRENT_GRPC_VERSION
68+
compile 'io.grpc:grpc-testing:1.12.0' // CURRENT_GRPC_VERSION
6969
compile 'javax.annotation:javax.annotation-api:1.2'
7070
compile 'junit:junit:4.12'
7171

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.library'
22

33
group = "io.grpc"
4-
version = "1.12.0-SNAPSHOT" // CURRENT_GRPC_VERSION
4+
version = "1.12.0" // CURRENT_GRPC_VERSION
55
description = 'gRPC: Android'
66

77
buildscript {
@@ -44,9 +44,9 @@ repositories {
4444
}
4545

4646
dependencies {
47-
implementation 'io.grpc:grpc-core:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
47+
implementation 'io.grpc:grpc-core:1.12.0' // CURRENT_GRPC_VERSION
4848

49-
testImplementation 'io.grpc:grpc-okhttp:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
49+
testImplementation 'io.grpc:grpc-okhttp:1.12.0' // CURRENT_GRPC_VERSION
5050
testImplementation 'junit:junit:4.12'
5151
testImplementation 'org.robolectric:robolectric:3.7.1'
5252
testImplementation 'com.google.truth:truth:0.39'

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ subprojects {
5252
idea.module.inheritOutputDirs = true
5353

5454
group = "io.grpc"
55-
version = "1.12.0-SNAPSHOT" // CURRENT_GRPC_VERSION
55+
version = "1.12.0" // CURRENT_GRPC_VERSION
5656

5757
sourceCompatibility = 1.6
5858
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.asyncUnimplementedUnaryCall;
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 1.12.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.12.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.asyncUnimplementedUnaryCall;
2121
* </pre>
2222
*/
2323
@javax.annotation.Generated(
24-
value = "by gRPC proto compiler (version 1.12.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.12.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.12.0-SNAPSHOT)",
26+
value = "by gRPC proto compiler (version 1.12.0)",
2727
comments = "Source: test.proto")
2828
public final class TestServiceGrpc {
2929

core/src/main/java/io/grpc/internal/GrpcUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public byte[] parseAsciiString(byte[] serialized) {
199199

200200
public static final Splitter ACCEPT_ENCODING_SPLITTER = Splitter.on(',').trimResults();
201201

202-
private static final String IMPLEMENTATION_VERSION = "1.12.0-SNAPSHOT"; // CURRENT_GRPC_VERSION
202+
private static final String IMPLEMENTATION_VERSION = "1.12.0"; // CURRENT_GRPC_VERSION
203203

204204
/**
205205
* The default delay in nanos before we send a keepalive.

cronet/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ android {
4848
}
4949

5050
dependencies {
51-
implementation 'io.grpc:grpc-core:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
52-
testImplementation 'io.grpc:grpc-testing:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
51+
implementation 'io.grpc:grpc-core:1.12.0' // CURRENT_GRPC_VERSION
52+
testImplementation 'io.grpc:grpc-testing:1.12.0' // CURRENT_GRPC_VERSION
5353

5454
implementation files('libs/cronet_api.jar')
5555
implementation files('libs/cronet_impl_common_java.jar')

examples/android/clientcache/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protobuf {
3838
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
3939
}
4040
grpc {
41-
artifact = 'io.grpc:protoc-gen-grpc-java:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
41+
artifact = 'io.grpc:protoc-gen-grpc-java:1.12.0' // CURRENT_GRPC_VERSION
4242
}
4343
}
4444
generateProtoTasks {
@@ -58,12 +58,12 @@ dependencies {
5858
compile 'com.android.support:appcompat-v7:27.0.2'
5959

6060
// You need to build grpc-java to obtain these libraries below.
61-
compile 'io.grpc:grpc-okhttp:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
62-
compile 'io.grpc:grpc-protobuf-lite:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
63-
compile 'io.grpc:grpc-stub:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
61+
compile 'io.grpc:grpc-okhttp:1.12.0' // CURRENT_GRPC_VERSION
62+
compile 'io.grpc:grpc-protobuf-lite:1.12.0' // CURRENT_GRPC_VERSION
63+
compile 'io.grpc:grpc-stub:1.12.0' // CURRENT_GRPC_VERSION
6464
compile 'javax.annotation:javax.annotation-api:1.2'
6565

6666
testCompile 'junit:junit:4.12'
6767
testCompile 'com.google.truth:truth:0.36'
68-
testCompile 'io.grpc:grpc-testing:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
68+
testCompile 'io.grpc:grpc-testing:1.12.0' // CURRENT_GRPC_VERSION
6969
}

examples/android/helloworld/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ protobuf {
3737
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
3838
}
3939
grpc {
40-
artifact = 'io.grpc:protoc-gen-grpc-java:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
40+
artifact = 'io.grpc:protoc-gen-grpc-java:1.12.0' // CURRENT_GRPC_VERSION
4141
}
4242
}
4343
generateProtoTasks {
@@ -57,8 +57,8 @@ dependencies {
5757
compile 'com.android.support:appcompat-v7:27.0.2'
5858

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

0 commit comments

Comments
 (0)