Skip to content

Commit 0bed606

Browse files
Bump version to 1.14.0
1 parent 9e09987 commit 0bed606

File tree

15 files changed

+37
-37
lines changed

15 files changed

+37
-37
lines changed

android-interop-testing/app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protobuf {
4242
protoc { artifact = 'com.google.protobuf:protoc:3.5.1-1' }
4343
plugins {
4444
javalite { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" }
45-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
45+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.14.0' // CURRENT_GRPC_VERSION
4646
}
4747
}
4848
generateProtoTasks {
@@ -71,11 +71,11 @@ dependencies {
7171
implementation 'junit:junit:4.12'
7272

7373
// You need to build grpc-java to obtain the grpc libraries below.
74-
implementation 'io.grpc:grpc-auth:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
75-
implementation 'io.grpc:grpc-okhttp:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
76-
implementation 'io.grpc:grpc-protobuf-lite:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
77-
implementation 'io.grpc:grpc-stub:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
78-
implementation 'io.grpc:grpc-testing:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
74+
implementation 'io.grpc:grpc-auth:1.14.0' // CURRENT_GRPC_VERSION
75+
implementation 'io.grpc:grpc-okhttp:1.14.0' // CURRENT_GRPC_VERSION
76+
implementation 'io.grpc:grpc-protobuf-lite:1.14.0' // CURRENT_GRPC_VERSION
77+
implementation 'io.grpc:grpc-stub:1.14.0' // CURRENT_GRPC_VERSION
78+
implementation 'io.grpc:grpc-testing:1.14.0' // CURRENT_GRPC_VERSION
7979

8080
// workaround for https://github.com/google/protobuf/issues/1889
8181
protobuf 'com.google.protobuf:protobuf-java:3.0.2'

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.14.0-SNAPSHOT" // CURRENT_GRPC_VERSION
4+
version = "1.14.0" // CURRENT_GRPC_VERSION
55
description = 'gRPC: Android'
66

77
buildscript {
@@ -41,9 +41,9 @@ repositories {
4141
}
4242

4343
dependencies {
44-
implementation 'io.grpc:grpc-core:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
44+
implementation 'io.grpc:grpc-core:1.14.0' // CURRENT_GRPC_VERSION
4545

46-
testImplementation 'io.grpc:grpc-okhttp:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
46+
testImplementation 'io.grpc:grpc-okhttp:1.14.0' // CURRENT_GRPC_VERSION
4747
testImplementation 'junit:junit:4.12'
4848
testImplementation 'org.robolectric:robolectric:3.7.1'
4949
testImplementation 'com.google.truth:truth:0.39'

build.gradle

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

5353
group = "io.grpc"
54-
version = "1.14.0-SNAPSHOT" // CURRENT_GRPC_VERSION
54+
version = "1.14.0" // CURRENT_GRPC_VERSION
5555

5656
sourceCompatibility = 1.6
5757
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.14.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.14.0)",
2525
comments = "Source: grpc/testing/compiler/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.14.0-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.14.0)",
2525
comments = "Source: grpc/testing/compiler/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.14.0-SNAPSHOT)",
26+
value = "by gRPC proto compiler (version 1.14.0)",
2727
comments = "Source: grpc/testing/compiler/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.14.0-SNAPSHOT"; // CURRENT_GRPC_VERSION
202+
private static final String IMPLEMENTATION_VERSION = "1.14.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
@@ -39,8 +39,8 @@ android {
3939
}
4040

4141
dependencies {
42-
implementation 'io.grpc:grpc-core:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
43-
testImplementation 'io.grpc:grpc-testing:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
42+
implementation 'io.grpc:grpc-core:1.14.0' // CURRENT_GRPC_VERSION
43+
testImplementation 'io.grpc:grpc-testing:1.14.0' // CURRENT_GRPC_VERSION
4444

4545
implementation "org.chromium.net:cronet-embedded:66.3359.158"
4646

examples/android/clientcache/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protobuf {
3131
protoc { artifact = 'com.google.protobuf:protoc:3.4.0' }
3232
plugins {
3333
javalite { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" }
34-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
34+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.14.0' // CURRENT_GRPC_VERSION
3535
}
3636
}
3737
generateProtoTasks {
@@ -49,12 +49,12 @@ dependencies {
4949
compile 'com.android.support:appcompat-v7:27.0.2'
5050

5151
// You need to build grpc-java to obtain these libraries below.
52-
compile 'io.grpc:grpc-okhttp:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
53-
compile 'io.grpc:grpc-protobuf-lite:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
54-
compile 'io.grpc:grpc-stub:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
52+
compile 'io.grpc:grpc-okhttp:1.14.0' // CURRENT_GRPC_VERSION
53+
compile 'io.grpc:grpc-protobuf-lite:1.14.0' // CURRENT_GRPC_VERSION
54+
compile 'io.grpc:grpc-stub:1.14.0' // CURRENT_GRPC_VERSION
5555
compile 'javax.annotation:javax.annotation-api:1.2'
5656

5757
testCompile 'junit:junit:4.12'
5858
testCompile 'com.google.truth:truth:0.36'
59-
testCompile 'io.grpc:grpc-testing:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
59+
testCompile 'io.grpc:grpc-testing:1.14.0' // CURRENT_GRPC_VERSION
6060
}

examples/android/helloworld/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protobuf {
3030
protoc { artifact = 'com.google.protobuf:protoc:3.5.1-1' }
3131
plugins {
3232
javalite { artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0" }
33-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
33+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.14.0' // CURRENT_GRPC_VERSION
3434
}
3535
}
3636
generateProtoTasks {
@@ -48,8 +48,8 @@ dependencies {
4848
compile 'com.android.support:appcompat-v7:27.0.2'
4949

5050
// You need to build grpc-java to obtain these libraries below.
51-
compile 'io.grpc:grpc-okhttp:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
52-
compile 'io.grpc:grpc-protobuf-lite:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
53-
compile 'io.grpc:grpc-stub:1.14.0-SNAPSHOT' // CURRENT_GRPC_VERSION
51+
compile 'io.grpc:grpc-okhttp:1.14.0' // CURRENT_GRPC_VERSION
52+
compile 'io.grpc:grpc-protobuf-lite:1.14.0' // CURRENT_GRPC_VERSION
53+
compile 'io.grpc:grpc-stub:1.14.0' // CURRENT_GRPC_VERSION
5454
compile 'javax.annotation:javax.annotation-api:1.2'
5555
}

0 commit comments

Comments
 (0)