Skip to content

Commit a1515f9

Browse files
authored
Update v1.62.x to point to 1.62.3-SNAPSHOT (#10966)
* Update README etc to reference 1.62.2 * Bump version to 1.62.3-SNAPSHOT
1 parent a54a24b commit a1515f9

File tree

31 files changed

+65
-65
lines changed

31 files changed

+65
-65
lines changed

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ For a guided tour, take a look at the [quick start
4444
guide](https://grpc.io/docs/languages/java/quickstart) or the more explanatory [gRPC
4545
basics](https://grpc.io/docs/languages/java/basics).
4646

47-
The [examples](https://github.com/grpc/grpc-java/tree/v1.62.1/examples) and the
48-
[Android example](https://github.com/grpc/grpc-java/tree/v1.62.1/examples/android)
47+
The [examples](https://github.com/grpc/grpc-java/tree/v1.62.2/examples) and the
48+
[Android example](https://github.com/grpc/grpc-java/tree/v1.62.2/examples/android)
4949
are standalone projects that showcase the usage of gRPC.
5050

5151
Download
@@ -56,18 +56,18 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
5656
<dependency>
5757
<groupId>io.grpc</groupId>
5858
<artifactId>grpc-netty-shaded</artifactId>
59-
<version>1.62.1</version>
59+
<version>1.62.2</version>
6060
<scope>runtime</scope>
6161
</dependency>
6262
<dependency>
6363
<groupId>io.grpc</groupId>
6464
<artifactId>grpc-protobuf</artifactId>
65-
<version>1.62.1</version>
65+
<version>1.62.2</version>
6666
</dependency>
6767
<dependency>
6868
<groupId>io.grpc</groupId>
6969
<artifactId>grpc-stub</artifactId>
70-
<version>1.62.1</version>
70+
<version>1.62.2</version>
7171
</dependency>
7272
<dependency> <!-- necessary for Java 9+ -->
7373
<groupId>org.apache.tomcat</groupId>
@@ -79,18 +79,18 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
7979

8080
Or for Gradle with non-Android, add to your dependencies:
8181
```gradle
82-
runtimeOnly 'io.grpc:grpc-netty-shaded:1.62.1'
83-
implementation 'io.grpc:grpc-protobuf:1.62.1'
84-
implementation 'io.grpc:grpc-stub:1.62.1'
82+
runtimeOnly 'io.grpc:grpc-netty-shaded:1.62.2'
83+
implementation 'io.grpc:grpc-protobuf:1.62.2'
84+
implementation 'io.grpc:grpc-stub:1.62.2'
8585
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
8686
```
8787

8888
For Android client, use `grpc-okhttp` instead of `grpc-netty-shaded` and
8989
`grpc-protobuf-lite` instead of `grpc-protobuf`:
9090
```gradle
91-
implementation 'io.grpc:grpc-okhttp:1.62.1'
92-
implementation 'io.grpc:grpc-protobuf-lite:1.62.1'
93-
implementation 'io.grpc:grpc-stub:1.62.1'
91+
implementation 'io.grpc:grpc-okhttp:1.62.2'
92+
implementation 'io.grpc:grpc-protobuf-lite:1.62.2'
93+
implementation 'io.grpc:grpc-stub:1.62.2'
9494
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
9595
```
9696

@@ -99,7 +99,7 @@ For [Bazel](https://bazel.build), you can either
9999
(with the GAVs from above), or use `@io_grpc_grpc_java//api` et al (see below).
100100

101101
[the JARs]:
102-
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.62.1
102+
https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.62.2
103103

104104
Development snapshots are available in [Sonatypes's snapshot
105105
repository](https://oss.sonatype.org/content/repositories/snapshots/).
@@ -131,7 +131,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
131131
<configuration>
132132
<protocArtifact>com.google.protobuf:protoc:3.25.1:exe:${os.detected.classifier}</protocArtifact>
133133
<pluginId>grpc-java</pluginId>
134-
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.62.1:exe:${os.detected.classifier}</pluginArtifact>
134+
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.62.2:exe:${os.detected.classifier}</pluginArtifact>
135135
</configuration>
136136
<executions>
137137
<execution>
@@ -161,7 +161,7 @@ protobuf {
161161
}
162162
plugins {
163163
grpc {
164-
artifact = 'io.grpc:protoc-gen-grpc-java:1.62.1'
164+
artifact = 'io.grpc:protoc-gen-grpc-java:1.62.2'
165165
}
166166
}
167167
generateProtoTasks {
@@ -194,7 +194,7 @@ protobuf {
194194
}
195195
plugins {
196196
grpc {
197-
artifact = 'io.grpc:protoc-gen-grpc-java:1.62.1'
197+
artifact = 'io.grpc:protoc-gen-grpc-java:1.62.2'
198198
}
199199
}
200200
generateProtoTasks {

build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT" // CURRENT_GRPC_VERSION
24+
version = "1.62.3-SNAPSHOT" // CURRENT_GRPC_VERSION
2525

2626
repositories {
2727
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
@@ -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.62.2-SNAPSHOT)",
11+
value = "by gRPC proto compiler (version 1.62.3-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

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT)",
11+
value = "by gRPC proto compiler (version 1.62.3-SNAPSHOT)",
1212
comments = "Source: grpc/testing/compiler/test.proto")
1313
@io.grpc.stub.annotations.GrpcGenerated
1414
public final class TestServiceGrpc {

compiler/src/testLite/golden/TestDeprecatedService.java.txt

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT)",
11+
value = "by gRPC proto compiler (version 1.62.3-SNAPSHOT)",
1212
comments = "Source: grpc/testing/compiler/test.proto")
1313
@io.grpc.stub.annotations.GrpcGenerated
1414
@java.lang.Deprecated

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

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT)",
11+
value = "by gRPC proto compiler (version 1.62.3-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

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

222222
public static final Splitter ACCEPT_ENCODING_SPLITTER = Splitter.on(',').trimResults();
223223

224-
public static final String IMPLEMENTATION_VERSION = "1.62.2-SNAPSHOT"; // CURRENT_GRPC_VERSION
224+
public static final String IMPLEMENTATION_VERSION = "1.62.3-SNAPSHOT"; // CURRENT_GRPC_VERSION
225225

226226
/**
227227
* 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
@@ -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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
37+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.62.3-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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
58-
implementation 'io.grpc:grpc-protobuf-lite:1.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
59-
implementation 'io.grpc:grpc-stub:1.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-okhttp:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
58+
implementation 'io.grpc:grpc-protobuf-lite:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
59+
implementation 'io.grpc:grpc-stub:1.62.3-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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
64+
testImplementation 'io.grpc:grpc-testing:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
6565
}

examples/android/helloworld/app/build.gradle

Lines changed: 4 additions & 4 deletions
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.62.3-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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
implementation 'io.grpc:grpc-protobuf-lite:1.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-stub:1.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
implementation 'io.grpc:grpc-okhttp:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-protobuf-lite:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-stub:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
5858
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5959
}

examples/android/routeguide/app/build.gradle

Lines changed: 4 additions & 4 deletions
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
35+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.62.3-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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
56-
implementation 'io.grpc:grpc-protobuf-lite:1.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-stub:1.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
55+
implementation 'io.grpc:grpc-okhttp:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-protobuf-lite:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-stub:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
5858
implementation 'org.apache.tomcat:annotations-api:6.0.53'
5959
}

examples/android/strictmode/app/build.gradle

Lines changed: 4 additions & 4 deletions
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
36+
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.62.3-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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
57-
implementation 'io.grpc:grpc-protobuf-lite:1.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
58-
implementation 'io.grpc:grpc-stub:1.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
56+
implementation 'io.grpc:grpc-okhttp:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
57+
implementation 'io.grpc:grpc-protobuf-lite:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
58+
implementation 'io.grpc:grpc-stub:1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
5959
implementation 'org.apache.tomcat:annotations-api:6.0.53'
6060
}

examples/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.1'
2828
def protocVersion = protobufVersion
2929

examples/example-alts/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
27+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2828
def protocVersion = '3.25.1'
2929

3030
dependencies {

examples/example-debug/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protobufVersion = '3.25.1'
3030

3131
dependencies {

examples/example-debug/pom.xml

Lines changed: 2 additions & 2 deletions
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.62.2-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.62.3-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.62.2-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.62.3-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.1</protoc.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>

examples/example-gauth/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
27+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2828
def protobufVersion = '3.25.1'
2929
def protocVersion = protobufVersion
3030

examples/example-gauth/pom.xml

Lines changed: 2 additions & 2 deletions
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.62.2-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.62.3-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.62.2-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.62.3-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protobuf.version>3.25.1</protobuf.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>

examples/example-gcp-observability/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protocVersion = '3.25.1'
3030

3131
dependencies {

examples/example-hostname/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.1'
2828

2929
dependencies {

examples/example-hostname/pom.xml

Lines changed: 2 additions & 2 deletions
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.62.2-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.62.3-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.62.2-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.62.3-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1616
<protoc.version>3.25.1</protoc.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>

examples/example-jwt-auth/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.1'
2828
def protocVersion = protobufVersion
2929

examples/example-jwt-auth/pom.xml

Lines changed: 2 additions & 2 deletions
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.62.2-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
10+
<version>1.62.3-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.62.2-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
16+
<grpc.version>1.62.3-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1717
<protobuf.version>3.25.1</protobuf.version>
1818
<protoc.version>3.25.1</protoc.version>
1919
<!-- required for jdk9 -->

examples/example-oauth/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.1'
2828
def protocVersion = protobufVersion
2929

examples/example-oauth/pom.xml

Lines changed: 2 additions & 2 deletions
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.62.2-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
10+
<version>1.62.3-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.62.2-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
16+
<grpc.version>1.62.3-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
1717
<protobuf.version>3.25.1</protobuf.version>
1818
<protoc.version>3.25.1</protoc.version>
1919
<!-- required for jdk9 -->

examples/example-orca/build.gradle

Lines changed: 1 addition & 1 deletion
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.62.2-SNAPSHOT' // CURRENT_GRPC_VERSION
21+
def grpcVersion = '1.62.3-SNAPSHOT' // CURRENT_GRPC_VERSION
2222
def protocVersion = '3.25.1'
2323

2424
dependencies {

0 commit comments

Comments
 (0)