Skip to content

Commit 94e2d34

Browse files
committed
Bump version to 1.30.1
1 parent bb96082 commit 94e2d34

File tree

22 files changed

+40
-40
lines changed

22 files changed

+40
-40
lines changed

build.gradle

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

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

2424
repositories {
2525
maven { // The google mirror is less flaky than mavenCentral()

compiler/src/test/golden/TestDeprecatedService.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.30.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.30.1)",
2525
comments = "Source: grpc/testing/compiler/test.proto")
2626
@java.lang.Deprecated
2727
public final class TestDeprecatedServiceGrpc {

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.30.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.30.1)",
2525
comments = "Source: grpc/testing/compiler/test.proto")
2626
public final class TestServiceGrpc {
2727

compiler/src/testLite/golden/TestDeprecatedService.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.30.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.30.1)",
2525
comments = "Source: grpc/testing/compiler/test.proto")
2626
@java.lang.Deprecated
2727
public final class TestDeprecatedServiceGrpc {

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.30.1-SNAPSHOT)",
24+
value = "by gRPC proto compiler (version 1.30.1)",
2525
comments = "Source: grpc/testing/compiler/test.proto")
2626
public final class TestServiceGrpc {
2727

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

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

197197
public static final Splitter ACCEPT_ENCODING_SPLITTER = Splitter.on(',').trimResults();
198198

199-
private static final String IMPLEMENTATION_VERSION = "1.30.1-SNAPSHOT"; // CURRENT_GRPC_VERSION
199+
private static final String IMPLEMENTATION_VERSION = "1.30.1"; // CURRENT_GRPC_VERSION
200200

201201
/**
202202
* The default timeout in nanos for a keepalive ping request.

examples/android/clientcache/app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
protobuf {
3131
protoc { artifact = 'com.google.protobuf:protoc:3.12.0' }
3232
plugins {
33-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
33+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.30.1' // CURRENT_GRPC_VERSION
3434
}
3535
}
3636
generateProtoTasks {
@@ -50,12 +50,12 @@ dependencies {
5050
implementation 'com.android.support:appcompat-v7:27.0.2'
5151

5252
// You need to build grpc-java to obtain these libraries below.
53-
implementation 'io.grpc:grpc-okhttp:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
54-
implementation 'io.grpc:grpc-protobuf-lite:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
55-
implementation 'io.grpc:grpc-stub:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
53+
implementation 'io.grpc:grpc-okhttp:1.30.1' // CURRENT_GRPC_VERSION
54+
implementation 'io.grpc:grpc-protobuf-lite:1.30.1' // CURRENT_GRPC_VERSION
55+
implementation 'io.grpc:grpc-stub:1.30.1' // CURRENT_GRPC_VERSION
5656
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5757

5858
testImplementation 'junit:junit:4.12'
5959
testImplementation 'com.google.truth:truth:1.0.1'
60-
testImplementation 'io.grpc:grpc-testing:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
60+
testImplementation 'io.grpc:grpc-testing:1.30.1' // CURRENT_GRPC_VERSION
6161
}

examples/android/helloworld/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
protobuf {
3030
protoc { artifact = 'com.google.protobuf:protoc:3.12.0' }
3131
plugins {
32-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
32+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.30.1' // CURRENT_GRPC_VERSION
3333
}
3434
}
3535
generateProtoTasks {
@@ -49,8 +49,8 @@ dependencies {
4949
implementation 'com.android.support:appcompat-v7:27.0.2'
5050

5151
// You need to build grpc-java to obtain these libraries below.
52-
implementation 'io.grpc:grpc-okhttp:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
53-
implementation 'io.grpc:grpc-protobuf-lite:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
54-
implementation 'io.grpc:grpc-stub:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
52+
implementation 'io.grpc:grpc-okhttp:1.30.1' // CURRENT_GRPC_VERSION
53+
implementation 'io.grpc:grpc-protobuf-lite:1.30.1' // CURRENT_GRPC_VERSION
54+
implementation 'io.grpc:grpc-stub:1.30.1' // CURRENT_GRPC_VERSION
5555
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5656
}

examples/android/routeguide/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ android {
2828
protobuf {
2929
protoc { artifact = 'com.google.protobuf:protoc:3.12.0' }
3030
plugins {
31-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
31+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.30.1' // CURRENT_GRPC_VERSION
3232
}
3333
}
3434
generateProtoTasks {
@@ -48,8 +48,8 @@ dependencies {
4848
implementation 'com.android.support:appcompat-v7:27.0.2'
4949

5050
// You need to build grpc-java to obtain these libraries below.
51-
implementation 'io.grpc:grpc-okhttp:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
52-
implementation 'io.grpc:grpc-protobuf-lite:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
53-
implementation 'io.grpc:grpc-stub:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
51+
implementation 'io.grpc:grpc-okhttp:1.30.1' // CURRENT_GRPC_VERSION
52+
implementation 'io.grpc:grpc-protobuf-lite:1.30.1' // CURRENT_GRPC_VERSION
53+
implementation 'io.grpc:grpc-stub:1.30.1' // CURRENT_GRPC_VERSION
5454
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5555
}

examples/android/strictmode/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
protobuf {
3030
protoc { artifact = 'com.google.protobuf:protoc:3.12.0' }
3131
plugins {
32-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
32+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.30.1' // CURRENT_GRPC_VERSION
3333
}
3434
}
3535
generateProtoTasks {
@@ -49,8 +49,8 @@ dependencies {
4949
implementation 'com.android.support:appcompat-v7:28.0.0'
5050

5151
// You need to build grpc-java to obtain these libraries below.
52-
implementation 'io.grpc:grpc-okhttp:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
53-
implementation 'io.grpc:grpc-protobuf-lite:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
54-
implementation 'io.grpc:grpc-stub:1.30.1-SNAPSHOT' // CURRENT_GRPC_VERSION
52+
implementation 'io.grpc:grpc-okhttp:1.30.1' // CURRENT_GRPC_VERSION
53+
implementation 'io.grpc:grpc-protobuf-lite:1.30.1' // CURRENT_GRPC_VERSION
54+
implementation 'io.grpc:grpc-stub:1.30.1' // CURRENT_GRPC_VERSION
5555
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5656
}

0 commit comments

Comments
 (0)