Skip to content

Commit c74c01f

Browse files
committed
Update version in examples/example-*
1 parent 14194d3 commit c74c01f

File tree

22 files changed

+29
-29
lines changed

22 files changed

+29
-29
lines changed

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.69.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27+
def grpcVersion = '1.70.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2828
def protocVersion = '3.25.5'
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.69.0-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.70.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protobufVersion = '3.25.5'
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.69.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.70.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.69.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.70.0-SNAPSHOT</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

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.69.0-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.70.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protobufVersion = '3.25.5'
3030

3131
dependencies {

examples/example-dualstack/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.69.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.70.0-SNAPSHOT</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.69.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.70.0-SNAPSHOT</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

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.69.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27+
def grpcVersion = '1.70.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2828
def protobufVersion = '3.25.5'
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.69.0-SNAPSHOT</version><!-- CURRENT_GRPC_VERSION -->
9+
<version>1.70.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.69.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
15+
<grpc.version>1.70.0-SNAPSHOT</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

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.69.0-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.70.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protocVersion = '3.25.5'
3030
def openTelemetryVersion = '1.40.0'
3131
def openTelemetryPrometheusVersion = '1.40.0-alpha'

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.69.0-SNAPSHOT' // CURRENT_GRPC_VERSION
28+
def grpcVersion = '1.70.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2929
def protocVersion = '3.25.5'
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.69.0-SNAPSHOT' // CURRENT_GRPC_VERSION
26+
def grpcVersion = '1.70.0-SNAPSHOT' // CURRENT_GRPC_VERSION
2727
def protobufVersion = '3.25.5'
2828

2929
dependencies {

0 commit comments

Comments
 (0)