Skip to content

Commit 865c443

Browse files
committed
Bump version to 1.71.0
1 parent ac9d0d2 commit 865c443

File tree

34 files changed

+55
-55
lines changed

34 files changed

+55
-55
lines changed

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module(
22
name = "grpc-java",
33
compatibility_level = 0,
44
repo_name = "io_grpc_grpc_java",
5-
version = "1.71.0-SNAPSHOT", # CURRENT_GRPC_VERSION
5+
version = "1.71.0", # CURRENT_GRPC_VERSION
66
)
77

88
# GRPC_DEPS_START

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ subprojects {
2121
apply plugin: "net.ltgt.errorprone"
2222

2323
group = "io.grpc"
24-
version = "1.71.0-SNAPSHOT" // CURRENT_GRPC_VERSION
24+
version = "1.71.0" // CURRENT_GRPC_VERSION
2525

2626
repositories {
2727
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
@@ -8,7 +8,7 @@ import static io.grpc.MethodDescriptor.generateFullMethodName;
88
* </pre>
99
*/
1010
@javax.annotation.Generated(
11-
value = "by gRPC proto compiler (version 1.71.0-SNAPSHOT)",
11+
value = "by gRPC proto compiler (version 1.71.0)",
1212
comments = "Source: grpc/testing/compiler/test.proto")
1313
@io.grpc.stub.annotations.GrpcGenerated
1414
@java.lang.Deprecated

compiler/src/test/golden/TestService.java.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import static io.grpc.MethodDescriptor.generateFullMethodName;
88
* </pre>
99
*/
1010
@javax.annotation.Generated(
11-
value = "by gRPC proto compiler (version 1.71.0-SNAPSHOT)",
11+
value = "by gRPC proto compiler (version 1.71.0)",
1212
comments = "Source: grpc/testing/compiler/test.proto")
1313
@io.grpc.stub.annotations.GrpcGenerated
1414
public final class TestServiceGrpc {

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

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

220220
public static final Splitter ACCEPT_ENCODING_SPLITTER = Splitter.on(',').trimResults();
221221

222-
public static final String IMPLEMENTATION_VERSION = "1.71.0-SNAPSHOT"; // CURRENT_GRPC_VERSION
222+
public static final String IMPLEMENTATION_VERSION = "1.71.0"; // CURRENT_GRPC_VERSION
223223

224224
/**
225225
* The default timeout in nanos for a keepalive ping request.

examples/MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
bazel_dep(name = "googleapis", repo_name = "com_google_googleapis", version = "0.0.0-20240326-1c8d509c5")
2-
bazel_dep(name = "grpc-java", repo_name = "io_grpc_grpc_java", version = "1.70.0-SNAPSHOT") # CURRENT_GRPC_VERSION
2+
bazel_dep(name = "grpc-java", repo_name = "io_grpc_grpc_java", version = "1.70.0") # CURRENT_GRPC_VERSION
33
bazel_dep(name = "grpc-proto", repo_name = "io_grpc_grpc_proto", version = "0.0.0-20240627-ec30f58")
44
bazel_dep(name = "protobuf", repo_name = "com_google_protobuf", version = "23.1")
55
bazel_dep(name = "rules_jvm_external", version = "6.0")

examples/android/clientcache/app/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ android {
3434
protobuf {
3535
protoc { artifact = 'com.google.protobuf:protoc:3.25.1' }
3636
plugins {
37-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
37+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.71.0' // CURRENT_GRPC_VERSION
3838
}
3939
}
4040
generateProtoTasks {
@@ -54,12 +54,12 @@ dependencies {
5454
implementation 'androidx.appcompat:appcompat:1.0.0'
5555

5656
// You need to build grpc-java to obtain these libraries below.
57-
implementation 'io.grpc:grpc-okhttp:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
58-
implementation 'io.grpc:grpc-protobuf-lite:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
59-
implementation 'io.grpc:grpc-stub:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-okhttp:1.71.0' // CURRENT_GRPC_VERSION
58+
implementation 'io.grpc:grpc-protobuf-lite:1.71.0' // CURRENT_GRPC_VERSION
59+
implementation 'io.grpc:grpc-stub:1.71.0' // CURRENT_GRPC_VERSION
6060
implementation 'org.apache.tomcat:annotations-api:6.0.53'
6161

6262
testImplementation 'junit:junit:4.13.2'
6363
testImplementation 'com.google.truth:truth:1.1.5'
64-
testImplementation 'io.grpc:grpc-testing:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
64+
testImplementation 'io.grpc:grpc-testing:1.71.0' // CURRENT_GRPC_VERSION
6565
}

examples/android/helloworld/app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
protobuf {
3333
protoc { artifact = 'com.google.protobuf:protoc:3.25.1' }
3434
plugins {
35-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.71.0' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -52,8 +52,8 @@ dependencies {
5252
implementation 'androidx.appcompat:appcompat:1.0.0'
5353

5454
// You need to build grpc-java to obtain these libraries below.
55-
implementation 'io.grpc:grpc-okhttp:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
implementation 'io.grpc:grpc-protobuf-lite:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-stub:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
implementation 'io.grpc:grpc-okhttp:1.71.0' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-protobuf-lite:1.71.0' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-stub:1.71.0' // CURRENT_GRPC_VERSION
5858
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5959
}

examples/android/routeguide/app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
protobuf {
3333
protoc { artifact = 'com.google.protobuf:protoc:3.25.1' }
3434
plugins {
35-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.71.0' // CURRENT_GRPC_VERSION
3636
}
3737
}
3838
generateProtoTasks {
@@ -52,8 +52,8 @@ dependencies {
5252
implementation 'androidx.appcompat:appcompat:1.0.0'
5353

5454
// You need to build grpc-java to obtain these libraries below.
55-
implementation 'io.grpc:grpc-okhttp:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
implementation 'io.grpc:grpc-protobuf-lite:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-stub:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
implementation 'io.grpc:grpc-okhttp:1.71.0' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-protobuf-lite:1.71.0' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-stub:1.71.0' // CURRENT_GRPC_VERSION
5858
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5959
}

examples/android/strictmode/app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ android {
3333
protobuf {
3434
protoc { artifact = 'com.google.protobuf:protoc:3.25.1' }
3535
plugins {
36-
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
36+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.71.0' // CURRENT_GRPC_VERSION
3737
}
3838
}
3939
generateProtoTasks {
@@ -53,8 +53,8 @@ dependencies {
5353
implementation 'androidx.appcompat:appcompat:1.0.0'
5454

5555
// You need to build grpc-java to obtain these libraries below.
56-
implementation 'io.grpc:grpc-okhttp:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-protobuf-lite:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
58-
implementation 'io.grpc:grpc-stub:1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-okhttp:1.71.0' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-protobuf-lite:1.71.0' // CURRENT_GRPC_VERSION
58+
implementation 'io.grpc:grpc-stub:1.71.0' // CURRENT_GRPC_VERSION
5959
implementation 'org.apache.tomcat:annotations-api:6.0.53'
6060
}

examples/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protobufVersion = '3.25.5'
2626
def protocVersion = protobufVersion
2727

examples/example-alts/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protocVersion = '3.25.5'
2626

2727
dependencies {

examples/example-debug/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.5'
2828

2929
dependencies {

examples/example-debug/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.71.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.71.0</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>example-debug</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.71.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.71.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.5</protoc.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>

examples/example-dualstack/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.5'
2828

2929
dependencies {

examples/example-dualstack/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.71.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.71.0</version><!-- CURRENT_GRPC_VERSION -->
1010
<name>example-dualstack</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.71.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.71.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.5</protoc.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>

examples/example-gauth/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protobufVersion = '3.25.5'
2626
def protocVersion = protobufVersion
2727

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.71.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.71.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.71.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.71.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protobuf.version>3.25.5</protobuf.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>

examples/example-gcp-csm-observability/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
25+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2626
def protocVersion = '3.25.5'
2727
def openTelemetryVersion = '1.40.0'
2828
def openTelemetryPrometheusVersion = '1.40.0-alpha'

examples/example-gcp-observability/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
25+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2626
def protocVersion = '3.25.5'
2727

2828
dependencies {

examples/example-hostname/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protobufVersion = '3.25.5'
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.71.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.71.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.71.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.71.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.5</protoc.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>

examples/example-jwt-auth/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protobufVersion = '3.25.5'
2626
def protocVersion = protobufVersion
2727

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.71.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
10+
<version>1.71.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.71.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
16+
<grpc.version>1.71.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1717
<protobuf.version>3.25.5</protobuf.version>
1818
<protoc.version>3.25.5</protoc.version>
1919
<!-- required for jdk9 -->

examples/example-oauth/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protobufVersion = '3.25.5'
2626
def protocVersion = protobufVersion
2727

examples/example-oauth/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.71.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
10+
<version>1.71.0</version><!-- CURRENT_GRPC_VERSION -->
1111
<name>example-oauth</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.71.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
16+
<grpc.version>1.71.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1717
<protobuf.version>3.25.5</protobuf.version>
1818
<protoc.version>3.25.5</protoc.version>
1919
<!-- required for jdk9 -->

examples/example-opentelemetry/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protocVersion = '3.25.5'
2626
def openTelemetryVersion = '1.40.0'
2727
def openTelemetryPrometheusVersion = '1.40.0-alpha'

examples/example-orca/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ java {
1616
targetCompatibility = JavaVersion.VERSION_1_8
1717
}
1818

19-
def grpcVersion = '1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
19+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2020
def protocVersion = '3.25.5'
2121

2222
dependencies {

examples/example-reflection/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ java {
1616
targetCompatibility = JavaVersion.VERSION_1_8
1717
}
1818

19-
def grpcVersion = '1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
19+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2020
def protocVersion = '3.25.5'
2121

2222
dependencies {

examples/example-servlet/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ java {
1515
targetCompatibility = JavaVersion.VERSION_1_8
1616
}
1717

18-
def grpcVersion = '1.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
18+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
1919
def protocVersion = '3.25.5'
2020

2121
dependencies {

examples/example-tls/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protocVersion = '3.25.5'
2626

2727
dependencies {

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.71.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.71.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.71.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.71.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.5</protoc.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>

examples/example-xds/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ java {
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.71.0-SNAPSHOT' // CURRENT_GRPC_VERSION
24+
def grpcVersion = '1.71.0' // CURRENT_GRPC_VERSION
2525
def protocVersion = '3.25.5'
2626

2727
dependencies {

0 commit comments

Comments
 (0)