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

+5-5
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

+3-3
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+2-2
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

+5-5
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

+4-4
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
}

examples/android/routeguide/app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ protobuf {
3636
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
3737
}
3838
grpc {
39-
artifact = 'io.grpc:protoc-gen-grpc-java:1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
39+
artifact = 'io.grpc:protoc-gen-grpc-java:1.12.0' // CURRENT_GRPC_VERSION
4040
}
4141
}
4242
generateProtoTasks {
@@ -56,8 +56,8 @@ dependencies {
5656
compile 'com.android.support:appcompat-v7:27.0.2'
5757

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

examples/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repositories {
2828

2929
// Feel free to delete the comment at the next line. It is just for safely
3030
// updating the version in our release process.
31-
def grpcVersion = '1.12.0-SNAPSHOT' // CURRENT_GRPC_VERSION
31+
def grpcVersion = '1.12.0' // CURRENT_GRPC_VERSION
3232
def nettyTcNativeVersion = '2.0.7.Final'
3333

3434
dependencies {

examples/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<packaging>jar</packaging>
77
<!-- Feel free to delete the comment at the end of these lines. It is just
88
for safely updating the version in our release process. -->
9-
<version>1.12.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.12.0</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>examples</name>
1111
<url>http://maven.apache.org</url>
1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<grpc.version>1.12.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
14+
<grpc.version>1.12.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1515
<netty.tcnative.version>2.0.7.Final</netty.tcnative.version>
1616
</properties>
1717
<dependencies>

0 commit comments

Comments
 (0)