Skip to content

Commit bec6a86

Browse files
committed
Bump version to 1.33.0
1 parent 7d8410f commit bec6a86

File tree

22 files changed

+40
-40
lines changed

22 files changed

+40
-40
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ subprojects {
1818
apply plugin: "net.ltgt.errorprone"
1919

2020
group = "io.grpc"
21-
version = "1.33.0-SNAPSHOT" // CURRENT_GRPC_VERSION
21+
version = "1.33.0" // CURRENT_GRPC_VERSION
2222

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

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

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

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ public byte[] parseAsciiString(byte[] serialized) {
197197

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

200-
private static final String IMPLEMENTATION_VERSION = "1.33.0-SNAPSHOT"; // CURRENT_GRPC_VERSION
200+
private static final String IMPLEMENTATION_VERSION = "1.33.0"; // CURRENT_GRPC_VERSION
201201

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

examples/android/clientcache/app/build.gradle

+5-5
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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
33+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.33.0' // 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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
54-
implementation 'io.grpc:grpc-protobuf-lite:1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
55-
implementation 'io.grpc:grpc-stub:1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
53+
implementation 'io.grpc:grpc-okhttp:1.33.0' // CURRENT_GRPC_VERSION
54+
implementation 'io.grpc:grpc-protobuf-lite:1.33.0' // CURRENT_GRPC_VERSION
55+
implementation 'io.grpc:grpc-stub:1.33.0' // 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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
60+
testImplementation 'io.grpc:grpc-testing:1.33.0' // CURRENT_GRPC_VERSION
6161
}

examples/android/helloworld/app/build.gradle

+4-4
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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
31+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.33.0' // 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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
52-
implementation 'io.grpc:grpc-protobuf-lite:1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
53-
implementation 'io.grpc:grpc-stub:1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
51+
implementation 'io.grpc:grpc-okhttp:1.33.0' // CURRENT_GRPC_VERSION
52+
implementation 'io.grpc:grpc-protobuf-lite:1.33.0' // CURRENT_GRPC_VERSION
53+
implementation 'io.grpc:grpc-stub:1.33.0' // CURRENT_GRPC_VERSION
5454
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5555
}

examples/android/routeguide/app/build.gradle

+4-4
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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
31+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.33.0' // 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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
52-
implementation 'io.grpc:grpc-protobuf-lite:1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
53-
implementation 'io.grpc:grpc-stub:1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
51+
implementation 'io.grpc:grpc-okhttp:1.33.0' // CURRENT_GRPC_VERSION
52+
implementation 'io.grpc:grpc-protobuf-lite:1.33.0' // CURRENT_GRPC_VERSION
53+
implementation 'io.grpc:grpc-stub:1.33.0' // CURRENT_GRPC_VERSION
5454
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5555
}

examples/android/strictmode/app/build.gradle

+4-4
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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
32+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.33.0' // 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.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
53-
implementation 'io.grpc:grpc-protobuf-lite:1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
54-
implementation 'io.grpc:grpc-stub:1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
52+
implementation 'io.grpc:grpc-okhttp:1.33.0' // CURRENT_GRPC_VERSION
53+
implementation 'io.grpc:grpc-protobuf-lite:1.33.0' // CURRENT_GRPC_VERSION
54+
implementation 'io.grpc:grpc-stub:1.33.0' // CURRENT_GRPC_VERSION
5555
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5656
}

examples/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ targetCompatibility = 1.7
2222

2323
// Feel free to delete the comment at the next line. It is just for safely
2424
// updating the version in our release process.
25-
def grpcVersion = '1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
25+
def grpcVersion = '1.33.0' // CURRENT_GRPC_VERSION
2626
def protobufVersion = '3.12.0'
2727
def protocVersion = protobufVersion
2828

examples/example-alts/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ targetCompatibility = 1.7
2323

2424
// Feel free to delete the comment at the next line. It is just for safely
2525
// updating the version in our release process.
26-
def grpcVersion = '1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.33.0' // CURRENT_GRPC_VERSION
2727
def protocVersion = '3.12.0'
2828

2929
dependencies {

examples/example-gauth/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ targetCompatibility = 1.7
2323

2424
// Feel free to delete the comment at the next line. It is just for safely
2525
// updating the version in our release process.
26-
def grpcVersion = '1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.33.0' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.12.0'
2828
def protocVersion = protobufVersion
2929

examples/example-gauth/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
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.33.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.33.0</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>example-gauth</name>
1111
<url>https://github.com/grpc/grpc-java</url>
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<grpc.version>1.33.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.33.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protobuf.version>3.12.0</protobuf.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.7</maven.compiler.source>

examples/example-hostname/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ targetCompatibility = 1.7
2121

2222
// Feel free to delete the comment at the next line. It is just for safely
2323
// updating the version in our release process.
24-
def grpcVersion = '1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.33.0' // CURRENT_GRPC_VERSION
2525
def protobufVersion = '3.12.0'
2626

2727
dependencies {

examples/example-hostname/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
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.33.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.33.0</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>example-hostname</name>
1111
<url>https://github.com/grpc/grpc-java</url>
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<grpc.version>1.33.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.33.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.12.0</protoc.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.7</maven.compiler.source>

examples/example-jwt-auth/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ targetCompatibility = 1.7
2222

2323
// Feel free to delete the comment at the next line. It is just for safely
2424
// updating the version in our release process.
25-
def grpcVersion = '1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
25+
def grpcVersion = '1.33.0' // CURRENT_GRPC_VERSION
2626
def protobufVersion = '3.12.0'
2727
def protocVersion = protobufVersion
2828

examples/example-jwt-auth/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
<packaging>jar</packaging>
88
<!-- Feel free to delete the comment at the end of these lines. It is just
99
for safely updating the version in our release process. -->
10-
<version>1.33.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
10+
<version>1.33.0</version><!-- CURRENT_GRPC_VERSION -->
1111
<name>example-jwt-auth</name>
1212
<url>https://github.com/grpc/grpc-java</url>
1313

1414
<properties>
1515
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16-
<grpc.version>1.33.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
16+
<grpc.version>1.33.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1717
<protobuf.version>3.12.0</protobuf.version>
1818
<protoc.version>3.12.0</protoc.version>
1919
<!-- required for jdk9 -->

examples/example-tls/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ targetCompatibility = 1.7
2323

2424
// Feel free to delete the comment at the next line. It is just for safely
2525
// updating the version in our release process.
26-
def grpcVersion = '1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.33.0' // CURRENT_GRPC_VERSION
2727
def nettyTcNativeVersion = '2.0.31.Final'
2828
def protocVersion = '3.12.0'
2929

examples/example-tls/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
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.33.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.33.0</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>example-tls</name>
1111
<url>https://github.com/grpc/grpc-java</url>
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<grpc.version>1.33.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.33.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.12.0</protoc.version>
1717
<netty.tcnative.version>2.0.31.Final</netty.tcnative.version>
1818
<!-- required for jdk9 -->

examples/example-xds/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ targetCompatibility = 1.7
1818

1919
// Feel free to delete the comment at the next line. It is just for safely
2020
// updating the version in our release process.
21-
def grpcVersion = '1.33.0-SNAPSHOT' // CURRENT_GRPC_VERSION
21+
def grpcVersion = '1.33.0' // CURRENT_GRPC_VERSION
2222

2323
dependencies {
2424
// This example's client is the same as the helloworld client. We depend on the helloworld

examples/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
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.33.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.33.0</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>examples</name>
1111
<url>https://github.com/grpc/grpc-java</url>
1212

1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
<grpc.version>1.33.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.33.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protobuf.version>3.12.0</protobuf.version>
1717
<protoc.version>3.12.0</protoc.version>
1818
<!-- required for jdk9 -->

0 commit comments

Comments
 (0)