This is an automated email from the ASF dual-hosted git repository.
yhu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/beam-starter-java.git
The following commit(s) were added to refs/heads/main by this push:
new d4bebea Bump Beam version to 2.55.0 (#97)
d4bebea is described below
commit d4bebeacde26b5c31bdbcf5696ffa5177182b3f5
Author: Yi Hu <[email protected]>
AuthorDate: Mon Mar 25 14:15:41 2024 -0400
Bump Beam version to 2.55.0 (#97)
---
build.gradle | 4 ++--
build.sbt | 2 +-
pom.xml | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/build.gradle b/build.gradle
index f3091da..11814c4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -25,8 +25,8 @@ test {
dependencies {
// App dependencies.
- implementation "org.apache.beam:beam-sdks-java-core:2.54.0"
- implementation "org.apache.beam:beam-runners-direct-java:2.54.0"
+ implementation "org.apache.beam:beam-sdks-java-core:2.55.0"
+ implementation "org.apache.beam:beam-runners-direct-java:2.55.0"
implementation "org.slf4j:slf4j-jdk14:1.7.32"
// Tests dependencies.
diff --git a/build.sbt b/build.sbt
index 79eb195..bb21c6b 100644
--- a/build.sbt
+++ b/build.sbt
@@ -8,7 +8,7 @@
mainClass := Some("com.example.App")
-val beamVersion = "2.54.0"
+val beamVersion = "2.55.0"
libraryDependencies ++= Seq(
// App dependencies.
"org.apache.beam" % "beam-sdks-java-core" % beamVersion,
diff --git a/pom.xml b/pom.xml
index f1ba566..ccced6d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,13 +80,13 @@
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-core</artifactId>
- <version>2.54.0</version>
+ <version>2.55.0</version>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-direct-java</artifactId>
- <version>2.54.0</version>
+ <version>2.55.0</version>
<scope>runtime</scope>
</dependency>