Skip to content

Commit 752a045

Browse files
Revert "Start 1.67.0 development cycle (#11416)" (#11428)
This reverts commit 0090a52 since 1.67.0-SNAPSHOT should not be referenced in the 1.66.x release.
1 parent ef09d94 commit 752a045

File tree

31 files changed

+51
-51
lines changed

31 files changed

+51
-51
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.67.0-SNAPSHOT", # CURRENT_GRPC_VERSION
5+
version = "1.66.0-SNAPSHOT", # 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.67.0-SNAPSHOT" // CURRENT_GRPC_VERSION
24+
version = "1.66.0-SNAPSHOT" // 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.67.0-SNAPSHOT)",
11+
value = "by gRPC proto compiler (version 1.66.0-SNAPSHOT)",
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.67.0-SNAPSHOT)",
11+
value = "by gRPC proto compiler (version 1.66.0-SNAPSHOT)",
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.67.0-SNAPSHOT"; // CURRENT_GRPC_VERSION
222+
public static final String IMPLEMENTATION_VERSION = "1.66.0-SNAPSHOT"; // CURRENT_GRPC_VERSION
223223

224224
/**
225225
* 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
@@ -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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
37+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.66.0-SNAPSHOT' // 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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
58-
implementation 'io.grpc:grpc-protobuf-lite:1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
59-
implementation 'io.grpc:grpc-stub:1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-okhttp:1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
58+
implementation 'io.grpc:grpc-protobuf-lite:1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
59+
implementation 'io.grpc:grpc-stub:1.66.0-SNAPSHOT' // 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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
64+
testImplementation 'io.grpc:grpc-testing:1.66.0-SNAPSHOT' // 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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.66.0-SNAPSHOT' // 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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
implementation 'io.grpc:grpc-protobuf-lite:1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-stub:1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
implementation 'io.grpc:grpc-okhttp:1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-protobuf-lite:1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-stub:1.66.0-SNAPSHOT' // 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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.66.0-SNAPSHOT' // 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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
implementation 'io.grpc:grpc-protobuf-lite:1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-stub:1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
implementation 'io.grpc:grpc-okhttp:1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-protobuf-lite:1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-stub:1.66.0-SNAPSHOT' // 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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
36+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.66.0-SNAPSHOT' // 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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-protobuf-lite:1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
58-
implementation 'io.grpc:grpc-stub:1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-okhttp:1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-protobuf-lite:1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
58+
implementation 'io.grpc:grpc-stub:1.66.0-SNAPSHOT' // 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
@@ -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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.3'
2828
def protocVersion = protobufVersion
2929

examples/example-alts/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ java {
2424

2525
// Feel free to delete the comment at the next line. It is just for safely
2626
// updating the version in our release process.
27-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2828
def protocVersion = '3.25.3'
2929

3030
dependencies {

examples/example-debug/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ java {
2525

2626
// Feel free to delete the comment at the next line. It is just for safely
2727
// updating the version in our release process.
28-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protobufVersion = '3.25.3'
3030

3131
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.67.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.66.0-SNAPSHOT</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.67.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.66.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.3</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
@@ -24,7 +24,7 @@ java {
2424

2525
// Feel free to delete the comment at the next line. It is just for safely
2626
// updating the version in our release process.
27-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2828
def protobufVersion = '3.25.3'
2929
def protocVersion = protobufVersion
3030

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.67.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.66.0-SNAPSHOT</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.67.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.66.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protobuf.version>3.25.3</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
@@ -25,7 +25,7 @@ java {
2525

2626
// Feel free to delete the comment at the next line. It is just for safely
2727
// updating the version in our release process.
28-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protocVersion = '3.25.3'
3030
def openTelemetryVersion = '1.40.0'
3131
def openTelemetryPrometheusVersion = '1.40.0-alpha'

examples/example-gcp-observability/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ java {
2525

2626
// Feel free to delete the comment at the next line. It is just for safely
2727
// updating the version in our release process.
28-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protocVersion = '3.25.3'
3030

3131
dependencies {

examples/example-hostname/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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.3'
2828

2929
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.67.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.66.0-SNAPSHOT</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.67.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.66.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.3</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
@@ -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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.3'
2828
def protocVersion = protobufVersion
2929

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.67.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
10+
<version>1.66.0-SNAPSHOT</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.67.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
16+
<grpc.version>1.66.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1717
<protobuf.version>3.25.3</protobuf.version>
1818
<protoc.version>3.25.3</protoc.version>
1919
<!-- required for jdk9 -->

examples/example-oauth/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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.3'
2828
def protocVersion = protobufVersion
2929

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.67.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
10+
<version>1.66.0-SNAPSHOT</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.67.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
16+
<grpc.version>1.66.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1717
<protobuf.version>3.25.3</protobuf.version>
1818
<protoc.version>3.25.3</protoc.version>
1919
<!-- required for jdk9 -->

examples/example-opentelemetry/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ java {
2424

2525
// Feel free to delete the comment at the next line. It is just for safely
2626
// updating the version in our release process.
27-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2828
def protocVersion = '3.25.3'
2929
def openTelemetryVersion = '1.40.0'
3030
def openTelemetryPrometheusVersion = '1.40.0-alpha'

examples/example-orca/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ java {
1818
targetCompatibility = JavaVersion.VERSION_1_8
1919
}
2020

21-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
21+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2222
def protocVersion = '3.25.3'
2323

2424
dependencies {

examples/example-reflection/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ java {
1818
targetCompatibility = JavaVersion.VERSION_1_8
1919
}
2020

21-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
21+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2222
def protocVersion = '3.25.3'
2323

2424
dependencies {

examples/example-servlet/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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
19+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2020
def protocVersion = '3.25.3'
2121

2222
dependencies {

examples/example-tls/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ java {
2424

2525
// Feel free to delete the comment at the next line. It is just for safely
2626
// updating the version in our release process.
27-
def grpcVersion = '1.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2828
def protocVersion = '3.25.3'
2929

3030
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.67.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.66.0-SNAPSHOT</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.67.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.66.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.3</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
@@ -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.67.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.66.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protocVersion = '3.25.3'
2828

2929
dependencies {

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.67.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.66.0-SNAPSHOT</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.67.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.66.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protobuf.version>3.25.3</protobuf.version>
1717
<protoc.version>3.25.3</protoc.version>
1818
<!-- required for JDK 8 -->

0 commit comments

Comments
 (0)